feat: add Cosori Dual Blaze (CAF-P583S) air fryer support#517
Open
RedsGT wants to merge 2 commits into
Open
Conversation
Registers CAF-P583S-KUS and CAF-P583S-KEU using the existing VeSyncTurboBlazeFryer class -- same bypassV2 protocol (startCook / endCook / getAirfryerStatus). Enables remote start, stop, and status polling out of the box. Default AirFry preset; the device's other 10 presets (Broil, Roast, Bake, Reheat, Steak, Seafood, Veggies, French Fries, Frozen, Chicken) are added in a follow-up commit. Notes: - Dual Blaze has no preheat function (only RESUMABLE feature flag set) - Temperature range 175-400F per the manual - Status map adds standby/preheating/keeping which the device emits 🤖 This commit was authored with assistance from Claude (Anthropic). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Adds the full set of cooking presets exposed by the VeSync app for the
Cosori Dual Blaze (CAF-P583S):
Recipe IDs from packet captures of the official VeSync app:
Air Fry 14 Broil 17 Roast 13
Bake 9 Reheat 16 Steak 1
Seafood 3 Veggies 15 French Fries 6
Frozen 5 Chicken 2
Default temperature/time per the CAF-P583S-KUS user manual.
New AirFryerCookModes enum values:
STEAK, SEAFOOD, VEGGIES, FRENCH_FRIES, CHICKEN
The CAF-P583S device_map entry now wires up all 11 modes via cook_modes.
Air Fry (id 14) was already defined in AirFryerPresets and is reused as
the default preset.
🤖 This commit was authored with assistance from Claude (Anthropic).
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds support for the Cosori Dual Blaze 6.8qt smart air fryer
(CAF-P583S-KUS / CAF-P583S-KEU). Resolves the request in #477.
The Dual Blaze is a single-chamber model with dual heating elements
that uses the same bypassV2 protocol as TurboBlaze (
startCook,endCook,getAirfryerStatus), so it can reuseVeSyncTurboBlazeFryerwithout needing a new device class.
Commits
device_map.py(basic support, defaultAirFry preset).
packet captures of the official VeSync app, default temp/time per
the CAF-P583S-KUS user manual.
Tested on
currentTemp, cookSetTemp, totalTimeRemaining, stepArray), all 11
presets accepted by the device
Notes
🤖 The patches in this PR were authored with assistance from Claude
(Anthropic).