Skip to content

Commit

Permalink
Adds changes for min and max values of refrigerator temperature contr…
Browse files Browse the repository at this point in the history
…ol cabinet
  • Loading branch information
shgutte committed Nov 21, 2024
1 parent 334b1d9 commit 77c4071
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1955,8 +1955,8 @@ endpoint 2 {

server cluster TemperatureControl {
ram attribute temperatureSetpoint;
ram attribute minTemperature;
ram attribute maxTemperature;
ram attribute minTemperature default = 0;
ram attribute maxTemperature default = 5;
ram attribute step;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down Expand Up @@ -1985,8 +1985,8 @@ endpoint 3 {

server cluster TemperatureControl {
ram attribute temperatureSetpoint;
ram attribute minTemperature;
ram attribute maxTemperature;
ram attribute minTemperature default = 32;
ram attribute maxTemperature default = 39;
ram attribute step;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3770,7 +3770,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "0",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand All @@ -3786,7 +3786,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "5",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down Expand Up @@ -4119,7 +4119,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "32",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand All @@ -4135,7 +4135,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "39",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1863,8 +1863,8 @@ endpoint 2 {

server cluster TemperatureControl {
ram attribute temperatureSetpoint;
ram attribute minTemperature;
ram attribute maxTemperature;
ram attribute minTemperature default = 0;
ram attribute maxTemperature default = 5;
ram attribute step;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down Expand Up @@ -1893,8 +1893,8 @@ endpoint 3 {

server cluster TemperatureControl {
ram attribute temperatureSetpoint;
ram attribute minTemperature;
ram attribute maxTemperature;
ram attribute minTemperature default = 32;
ram attribute maxTemperature default = 39;
ram attribute step;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3675,7 +3675,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "0",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand All @@ -3691,7 +3691,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "5",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down Expand Up @@ -4024,7 +4024,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "32",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand All @@ -4040,7 +4040,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "",
"defaultValue": "39",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down

0 comments on commit 77c4071

Please sign in to comment.