Skip to content

Commit 8e37ee8

Browse files
sxb427andy31415
authored andcommitted
Correct temperature range for dishwasher (project-chip#37647)
* Correct temperature range for dishwasher * Make temperature range realistic --------- Co-authored-by: Andrei Litvin <andy314@gmail.com>
1 parent bacb06b commit 8e37ee8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/chef/devices/rootnode_dishwasher_cc105034fe.matter

+2-2
Original file line numberDiff line numberDiff line change
@@ -1881,8 +1881,8 @@ endpoint 1 {
18811881

18821882
server cluster TemperatureControl {
18831883
ram attribute temperatureSetpoint default = 0;
1884-
ram attribute minTemperature default = 0;
1885-
ram attribute maxTemperature default = 0;
1884+
ram attribute minTemperature default = 4900;
1885+
ram attribute maxTemperature default = 8200;
18861886
ram attribute step default = 0;
18871887
callback attribute generatedCommandList;
18881888
callback attribute acceptedCommandList;

examples/chef/devices/rootnode_dishwasher_cc105034fe.zap

+2-2
Original file line numberDiff line numberDiff line change
@@ -3286,7 +3286,7 @@
32863286
"storageOption": "RAM",
32873287
"singleton": 0,
32883288
"bounded": 0,
3289-
"defaultValue": "0",
3289+
"defaultValue": "4900",
32903290
"reportable": 1,
32913291
"minInterval": 1,
32923292
"maxInterval": 65534,
@@ -3302,7 +3302,7 @@
33023302
"storageOption": "RAM",
33033303
"singleton": 0,
33043304
"bounded": 0,
3305-
"defaultValue": "0",
3305+
"defaultValue": "8200",
33063306
"reportable": 1,
33073307
"minInterval": 1,
33083308
"maxInterval": 65534,

0 commit comments

Comments
 (0)