Skip to content

Commit

Permalink
Fix Chef MaxMeasuredValue of PressureMeasurement (#36434)
Browse files Browse the repository at this point in the history
  • Loading branch information
erwinpan1 authored Nov 8, 2024
1 parent 5ace630 commit cf50115
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1845,7 +1845,7 @@ endpoint 1 {
server cluster PressureMeasurement {
ram attribute measuredValue default = 0xA;
ram attribute minMeasuredValue default = 1;
ram attribute maxMeasuredValue default = 0xfffe;
ram attribute maxMeasuredValue default = 32767;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute attributeList;
Expand Down
4 changes: 2 additions & 2 deletions examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.zap
Original file line number Diff line number Diff line change
Expand Up @@ -2721,7 +2721,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0xfffe",
"defaultValue": "32767",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down Expand Up @@ -2830,4 +2830,4 @@
"parentEndpointIdentifier": null
}
]
}
}

0 comments on commit cf50115

Please sign in to comment.