Skip to content

Commit

Permalink
Correct temperature range for dishwasher (#37647)
Browse files Browse the repository at this point in the history
* Correct temperature range for dishwasher

* Make temperature range realistic

---------

Co-authored-by: Andrei Litvin <[email protected]>
  • Loading branch information
sxb427 and andy31415 authored Feb 20, 2025
1 parent 3939703 commit e1ca08f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/chef/devices/rootnode_dishwasher_cc105034fe.matter
Original file line number Diff line number Diff line change
Expand Up @@ -1881,8 +1881,8 @@ endpoint 1 {

server cluster TemperatureControl {
ram attribute temperatureSetpoint default = 0;
ram attribute minTemperature default = 0;
ram attribute maxTemperature default = 0;
ram attribute minTemperature default = 4900;
ram attribute maxTemperature default = 8200;
ram attribute step default = 0;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down
4 changes: 2 additions & 2 deletions examples/chef/devices/rootnode_dishwasher_cc105034fe.zap
Original file line number Diff line number Diff line change
Expand Up @@ -3286,7 +3286,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0",
"defaultValue": "4900",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand All @@ -3302,7 +3302,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0",
"defaultValue": "8200",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down

0 comments on commit e1ca08f

Please sign in to comment.