Skip to content

Commit

Permalink
Regenerate Matter File From Previous Zap Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasgraf authored and mhazley committed Oct 20, 2023
1 parent 8426f13 commit 9985393
Showing 1 changed file with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1292,6 +1292,7 @@ server cluster TemperatureMeasurement = 1026 {
readonly attribute nullable int16s measuredValue = 0;
readonly attribute nullable int16s minMeasuredValue = 1;
readonly attribute nullable int16s maxMeasuredValue = 2;
readonly attribute int16u tolerance = 3;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand All @@ -1305,6 +1306,7 @@ server cluster RelativeHumidityMeasurement = 1029 {
readonly attribute nullable int16u measuredValue = 0;
readonly attribute nullable int16u minMeasuredValue = 1;
readonly attribute nullable int16u maxMeasuredValue = 2;
readonly attribute int16u tolerance = 3;
readonly attribute command_id generatedCommandList[] = 65528;
readonly attribute command_id acceptedCommandList[] = 65529;
readonly attribute event_id eventList[] = 65530;
Expand Down Expand Up @@ -2075,7 +2077,7 @@ endpoint 1 {
callback attribute acceptedCommandList;
callback attribute eventList;
callback attribute attributeList;
ram attribute featureMap default = 47;
ram attribute featureMap default = 63;
ram attribute clusterRevision default = 4;
}
}
Expand Down Expand Up @@ -2346,15 +2348,16 @@ endpoint 3 {
}

server cluster TemperatureMeasurement {
ram attribute measuredValue;
ram attribute measuredValue default = 0x8000;
ram attribute minMeasuredValue default = 0x8000;
ram attribute maxMeasuredValue default = 0x8000;
ram attribute tolerance default = 0;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute eventList;
callback attribute attributeList;
ram attribute featureMap default = 0;
ram attribute clusterRevision default = 1;
ram attribute clusterRevision default = 4;
}
}
endpoint 4 {
Expand Down Expand Up @@ -2386,9 +2389,10 @@ endpoint 4 {
}

server cluster RelativeHumidityMeasurement {
ram attribute measuredValue;
ram attribute minMeasuredValue;
ram attribute maxMeasuredValue;
ram attribute measuredValue default = 0;
ram attribute minMeasuredValue default = 0;
ram attribute maxMeasuredValue default = 0x2710;
ram attribute tolerance;
callback attribute generatedCommandList;
callback attribute acceptedCommandList;
callback attribute eventList;
Expand Down Expand Up @@ -2438,7 +2442,7 @@ endpoint 5 {
callback attribute eventList;
callback attribute attributeList;
ram attribute featureMap default = 1;
ram attribute clusterRevision default = 5;
ram attribute clusterRevision default = 6;
}
}

Expand Down

0 comments on commit 9985393

Please sign in to comment.