Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fan rocksetting; thermostat dry mode #35578

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2162,12 +2162,14 @@ endpoint 1 {
ram attribute fanModeSequence default = 2;
ram attribute percentSetting default = 0;
ram attribute percentCurrent default = 0;
ram attribute rockSupport default = 0x00;
ram attribute rockSetting default = 0x00;
ram attribute airflowDirection default = 0;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute eventList;
callback attribute attributeList;
ram attribute featureMap default = 33;
ram attribute featureMap default = 37;
ram attribute clusterRevision default = 1;

handle command Step;
Expand Down
34 changes: 33 additions & 1 deletion examples/chef/devices/rootnode_roomairconditioner_9cf3607804.zap
Original file line number Diff line number Diff line change
Expand Up @@ -3032,6 +3032,38 @@
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "RockSupport",
"code": 7,
"mfgCode": null,
"side": "server",
"type": "RockBitmap",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0x00",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "RockSetting",
"code": 8,
"mfgCode": null,
"side": "server",
"type": "RockBitmap",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0x00",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "AirflowDirection",
"code": 11,
Expand Down Expand Up @@ -3122,7 +3154,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "33",
"defaultValue": "37",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down
Loading