Skip to content

Commit

Permalink
Merge pull request #25 from erwinpan1/fix_max_of_pressure_cluster
Browse files Browse the repository at this point in the history
Fix Chef MaxMeasuredValue of PressureMeasurement (project-chip#36434)
  • Loading branch information
GinyWang authored Nov 11, 2024
2 parents 8a245c1 + 3efd1a0 commit 3a2f6a1
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 @@ -1608,7 +1608,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 @@ -2939,7 +2939,7 @@
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0xfffe",
"defaultValue": "32767",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
Expand Down Expand Up @@ -3048,4 +3048,4 @@
"parentEndpointIdentifier": null
}
]
}
}

0 comments on commit 3a2f6a1

Please sign in to comment.