Skip to content

Commit cf50115

Browse files
authored
Fix Chef MaxMeasuredValue of PressureMeasurement (project-chip#36434)
1 parent 5ace630 commit cf50115

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.matter

+1-1
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ endpoint 1 {
18451845
server cluster PressureMeasurement {
18461846
ram attribute measuredValue default = 0xA;
18471847
ram attribute minMeasuredValue default = 1;
1848-
ram attribute maxMeasuredValue default = 0xfffe;
1848+
ram attribute maxMeasuredValue default = 32767;
18491849
callback attribute generatedCommandList;
18501850
callback attribute acceptedCommandList;
18511851
callback attribute attributeList;

examples/chef/devices/rootnode_pressuresensor_s0qC9wLH4k.zap

+2-2
Original file line numberDiff line numberDiff line change
@@ -2721,7 +2721,7 @@
27212721
"storageOption": "RAM",
27222722
"singleton": 0,
27232723
"bounded": 0,
2724-
"defaultValue": "0xfffe",
2724+
"defaultValue": "32767",
27252725
"reportable": 1,
27262726
"minInterval": 1,
27272727
"maxInterval": 65534,
@@ -2830,4 +2830,4 @@
28302830
"parentEndpointIdentifier": null
28312831
}
28322832
]
2833-
}
2833+
}

0 commit comments

Comments
 (0)