Skip to content

Commit fd859ae

Browse files
committed
Used alchemy to generate the events xml.
ran zap_regen_all script
1 parent 7d32a69 commit fd859ae

File tree

32 files changed

+509
-320
lines changed

32 files changed

+509
-320
lines changed

examples/air-purifier-app/air-purifier-common/air-purifier-app.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ cluster ActivatedCarbonFilterMonitoring = 114 {
15381538

15391539
/** An interface for configuring and controlling the functionality of a thermostat. */
15401540
cluster Thermostat = 513 {
1541-
revision 7;
1541+
revision 9;
15421542

15431543
enum ACCapacityFormatEnum : enum8 {
15441544
kBTUh = 0;
@@ -1771,7 +1771,7 @@ cluster Thermostat = 513 {
17711771
}
17721772

17731773
info event LocalTemperatureChange = 1 {
1774-
temperature currentLocalTemperature = 0;
1774+
nullable temperature currentLocalTemperature = 0;
17751775
}
17761776

17771777
info event OccupancyChange = 2 {
@@ -1781,7 +1781,7 @@ cluster Thermostat = 513 {
17811781

17821782
info event SetpointChange = 3 {
17831783
SystemModeEnum systemMode = 0;
1784-
OccupancyBitmap occupancy = 1;
1784+
optional OccupancyBitmap occupancy = 1;
17851785
optional temperature previousSetpoint = 2;
17861786
temperature currentSetpoint = 3;
17871787
}
@@ -1797,13 +1797,13 @@ cluster Thermostat = 513 {
17971797
}
17981798

17991799
info event ActiveScheduleChange = 6 {
1800-
optional octet_string previousScheduleHandle = 0;
1801-
octet_string currentScheduleHandle = 1;
1800+
optional nullable octet_string previousScheduleHandle = 0;
1801+
nullable octet_string currentScheduleHandle = 1;
18021802
}
18031803

18041804
info event ActivePresetChange = 7 {
1805-
optional octet_string previousPresetHandle = 0;
1806-
octet_string currentPresetHandle = 1;
1805+
optional nullable octet_string previousPresetHandle = 0;
1806+
nullable octet_string currentPresetHandle = 1;
18071807
}
18081808

18091809
readonly attribute nullable temperature localTemperature = 0;

examples/all-clusters-app/all-clusters-common/all-clusters-app.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -5401,7 +5401,7 @@ cluster PumpConfigurationAndControl = 512 {
54015401

54025402
/** An interface for configuring and controlling the functionality of a thermostat. */
54035403
cluster Thermostat = 513 {
5404-
revision 7;
5404+
revision 9;
54055405

54065406
enum ACCapacityFormatEnum : enum8 {
54075407
kBTUh = 0;
@@ -5634,7 +5634,7 @@ cluster Thermostat = 513 {
56345634
}
56355635

56365636
info event LocalTemperatureChange = 1 {
5637-
temperature currentLocalTemperature = 0;
5637+
nullable temperature currentLocalTemperature = 0;
56385638
}
56395639

56405640
info event OccupancyChange = 2 {
@@ -5644,7 +5644,7 @@ cluster Thermostat = 513 {
56445644

56455645
info event SetpointChange = 3 {
56465646
SystemModeEnum systemMode = 0;
5647-
OccupancyBitmap occupancy = 1;
5647+
optional OccupancyBitmap occupancy = 1;
56485648
optional temperature previousSetpoint = 2;
56495649
temperature currentSetpoint = 3;
56505650
}
@@ -5660,13 +5660,13 @@ cluster Thermostat = 513 {
56605660
}
56615661

56625662
info event ActiveScheduleChange = 6 {
5663-
optional octet_string previousScheduleHandle = 0;
5664-
octet_string currentScheduleHandle = 1;
5663+
optional nullable octet_string previousScheduleHandle = 0;
5664+
nullable octet_string currentScheduleHandle = 1;
56655665
}
56665666

56675667
info event ActivePresetChange = 7 {
5668-
optional octet_string previousPresetHandle = 0;
5669-
octet_string currentPresetHandle = 1;
5668+
optional nullable octet_string previousPresetHandle = 0;
5669+
nullable octet_string currentPresetHandle = 1;
56705670
}
56715671

56725672
readonly attribute nullable temperature localTemperature = 0;

examples/all-clusters-minimal-app/all-clusters-common/all-clusters-minimal-app.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -3813,7 +3813,7 @@ cluster PumpConfigurationAndControl = 512 {
38133813

38143814
/** An interface for configuring and controlling the functionality of a thermostat. */
38153815
cluster Thermostat = 513 {
3816-
revision 7;
3816+
revision 9;
38173817

38183818
enum ACCapacityFormatEnum : enum8 {
38193819
kBTUh = 0;
@@ -4046,7 +4046,7 @@ cluster Thermostat = 513 {
40464046
}
40474047

40484048
info event LocalTemperatureChange = 1 {
4049-
temperature currentLocalTemperature = 0;
4049+
nullable temperature currentLocalTemperature = 0;
40504050
}
40514051

40524052
info event OccupancyChange = 2 {
@@ -4056,7 +4056,7 @@ cluster Thermostat = 513 {
40564056

40574057
info event SetpointChange = 3 {
40584058
SystemModeEnum systemMode = 0;
4059-
OccupancyBitmap occupancy = 1;
4059+
optional OccupancyBitmap occupancy = 1;
40604060
optional temperature previousSetpoint = 2;
40614061
temperature currentSetpoint = 3;
40624062
}
@@ -4072,13 +4072,13 @@ cluster Thermostat = 513 {
40724072
}
40734073

40744074
info event ActiveScheduleChange = 6 {
4075-
optional octet_string previousScheduleHandle = 0;
4076-
octet_string currentScheduleHandle = 1;
4075+
optional nullable octet_string previousScheduleHandle = 0;
4076+
nullable octet_string currentScheduleHandle = 1;
40774077
}
40784078

40794079
info event ActivePresetChange = 7 {
4080-
optional octet_string previousPresetHandle = 0;
4081-
octet_string currentPresetHandle = 1;
4080+
optional nullable octet_string previousPresetHandle = 0;
4081+
nullable octet_string currentPresetHandle = 1;
40824082
}
40834083

40844084
readonly attribute nullable temperature localTemperature = 0;

examples/chef/devices/rootnode_airpurifier_airqualitysensor_temperaturesensor_humiditysensor_thermostat_56de3d5f45.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@ cluster ActivatedCarbonFilterMonitoring = 114 {
14611461

14621462
/** An interface for configuring and controlling the functionality of a thermostat. */
14631463
cluster Thermostat = 513 {
1464-
revision 7;
1464+
revision 9;
14651465

14661466
enum ACCapacityFormatEnum : enum8 {
14671467
kBTUh = 0;
@@ -1694,7 +1694,7 @@ cluster Thermostat = 513 {
16941694
}
16951695

16961696
info event LocalTemperatureChange = 1 {
1697-
temperature currentLocalTemperature = 0;
1697+
nullable temperature currentLocalTemperature = 0;
16981698
}
16991699

17001700
info event OccupancyChange = 2 {
@@ -1704,7 +1704,7 @@ cluster Thermostat = 513 {
17041704

17051705
info event SetpointChange = 3 {
17061706
SystemModeEnum systemMode = 0;
1707-
OccupancyBitmap occupancy = 1;
1707+
optional OccupancyBitmap occupancy = 1;
17081708
optional temperature previousSetpoint = 2;
17091709
temperature currentSetpoint = 3;
17101710
}
@@ -1720,13 +1720,13 @@ cluster Thermostat = 513 {
17201720
}
17211721

17221722
info event ActiveScheduleChange = 6 {
1723-
optional octet_string previousScheduleHandle = 0;
1724-
octet_string currentScheduleHandle = 1;
1723+
optional nullable octet_string previousScheduleHandle = 0;
1724+
nullable octet_string currentScheduleHandle = 1;
17251725
}
17261726

17271727
info event ActivePresetChange = 7 {
1728-
optional octet_string previousPresetHandle = 0;
1729-
octet_string currentPresetHandle = 1;
1728+
optional nullable octet_string previousPresetHandle = 0;
1729+
nullable octet_string currentPresetHandle = 1;
17301730
}
17311731

17321732
readonly attribute nullable temperature localTemperature = 0;

examples/chef/devices/rootnode_heatingcoolingunit_ncdGai1E5a.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -1757,7 +1757,7 @@ cluster FixedLabel = 64 {
17571757

17581758
/** An interface for configuring and controlling the functionality of a thermostat. */
17591759
cluster Thermostat = 513 {
1760-
revision 7;
1760+
revision 9;
17611761

17621762
enum ACCapacityFormatEnum : enum8 {
17631763
kBTUh = 0;
@@ -1990,7 +1990,7 @@ cluster Thermostat = 513 {
19901990
}
19911991

19921992
info event LocalTemperatureChange = 1 {
1993-
temperature currentLocalTemperature = 0;
1993+
nullable temperature currentLocalTemperature = 0;
19941994
}
19951995

19961996
info event OccupancyChange = 2 {
@@ -2000,7 +2000,7 @@ cluster Thermostat = 513 {
20002000

20012001
info event SetpointChange = 3 {
20022002
SystemModeEnum systemMode = 0;
2003-
OccupancyBitmap occupancy = 1;
2003+
optional OccupancyBitmap occupancy = 1;
20042004
optional temperature previousSetpoint = 2;
20052005
temperature currentSetpoint = 3;
20062006
}
@@ -2016,13 +2016,13 @@ cluster Thermostat = 513 {
20162016
}
20172017

20182018
info event ActiveScheduleChange = 6 {
2019-
optional octet_string previousScheduleHandle = 0;
2020-
octet_string currentScheduleHandle = 1;
2019+
optional nullable octet_string previousScheduleHandle = 0;
2020+
nullable octet_string currentScheduleHandle = 1;
20212021
}
20222022

20232023
info event ActivePresetChange = 7 {
2024-
optional octet_string previousPresetHandle = 0;
2025-
octet_string currentPresetHandle = 1;
2024+
optional nullable octet_string previousPresetHandle = 0;
2025+
nullable octet_string currentPresetHandle = 1;
20262026
}
20272027

20282028
readonly attribute nullable temperature localTemperature = 0;

examples/chef/devices/rootnode_heatpump_87ivjRAECh.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -2020,7 +2020,7 @@ provisional cluster DeviceEnergyManagementMode = 159 {
20202020

20212021
/** An interface for configuring and controlling the functionality of a thermostat. */
20222022
cluster Thermostat = 513 {
2023-
revision 7;
2023+
revision 9;
20242024

20252025
enum ACCapacityFormatEnum : enum8 {
20262026
kBTUh = 0;
@@ -2253,7 +2253,7 @@ cluster Thermostat = 513 {
22532253
}
22542254

22552255
info event LocalTemperatureChange = 1 {
2256-
temperature currentLocalTemperature = 0;
2256+
nullable temperature currentLocalTemperature = 0;
22572257
}
22582258

22592259
info event OccupancyChange = 2 {
@@ -2263,7 +2263,7 @@ cluster Thermostat = 513 {
22632263

22642264
info event SetpointChange = 3 {
22652265
SystemModeEnum systemMode = 0;
2266-
OccupancyBitmap occupancy = 1;
2266+
optional OccupancyBitmap occupancy = 1;
22672267
optional temperature previousSetpoint = 2;
22682268
temperature currentSetpoint = 3;
22692269
}
@@ -2279,13 +2279,13 @@ cluster Thermostat = 513 {
22792279
}
22802280

22812281
info event ActiveScheduleChange = 6 {
2282-
optional octet_string previousScheduleHandle = 0;
2283-
octet_string currentScheduleHandle = 1;
2282+
optional nullable octet_string previousScheduleHandle = 0;
2283+
nullable octet_string currentScheduleHandle = 1;
22842284
}
22852285

22862286
info event ActivePresetChange = 7 {
2287-
optional octet_string previousPresetHandle = 0;
2288-
octet_string currentPresetHandle = 1;
2287+
optional nullable octet_string previousPresetHandle = 0;
2288+
nullable octet_string currentPresetHandle = 1;
22892289
}
22902290

22912291
readonly attribute nullable temperature localTemperature = 0;

examples/chef/devices/rootnode_roomairconditioner_9cf3607804.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -1401,7 +1401,7 @@ cluster GroupKeyManagement = 63 {
14011401

14021402
/** An interface for configuring and controlling the functionality of a thermostat. */
14031403
cluster Thermostat = 513 {
1404-
revision 7;
1404+
revision 9;
14051405

14061406
enum ACCapacityFormatEnum : enum8 {
14071407
kBTUh = 0;
@@ -1634,7 +1634,7 @@ cluster Thermostat = 513 {
16341634
}
16351635

16361636
info event LocalTemperatureChange = 1 {
1637-
temperature currentLocalTemperature = 0;
1637+
nullable temperature currentLocalTemperature = 0;
16381638
}
16391639

16401640
info event OccupancyChange = 2 {
@@ -1644,7 +1644,7 @@ cluster Thermostat = 513 {
16441644

16451645
info event SetpointChange = 3 {
16461646
SystemModeEnum systemMode = 0;
1647-
OccupancyBitmap occupancy = 1;
1647+
optional OccupancyBitmap occupancy = 1;
16481648
optional temperature previousSetpoint = 2;
16491649
temperature currentSetpoint = 3;
16501650
}
@@ -1660,13 +1660,13 @@ cluster Thermostat = 513 {
16601660
}
16611661

16621662
info event ActiveScheduleChange = 6 {
1663-
optional octet_string previousScheduleHandle = 0;
1664-
octet_string currentScheduleHandle = 1;
1663+
optional nullable octet_string previousScheduleHandle = 0;
1664+
nullable octet_string currentScheduleHandle = 1;
16651665
}
16661666

16671667
info event ActivePresetChange = 7 {
1668-
optional octet_string previousPresetHandle = 0;
1669-
octet_string currentPresetHandle = 1;
1668+
optional nullable octet_string previousPresetHandle = 0;
1669+
nullable octet_string currentPresetHandle = 1;
16701670
}
16711671

16721672
readonly attribute nullable temperature localTemperature = 0;

examples/chef/devices/rootnode_thermostat_bm3fb8dhYi.matter

+7-7
Original file line numberDiff line numberDiff line change
@@ -1621,7 +1621,7 @@ cluster FixedLabel = 64 {
16211621

16221622
/** An interface for configuring and controlling the functionality of a thermostat. */
16231623
cluster Thermostat = 513 {
1624-
revision 7;
1624+
revision 9;
16251625

16261626
enum ACCapacityFormatEnum : enum8 {
16271627
kBTUh = 0;
@@ -1854,7 +1854,7 @@ cluster Thermostat = 513 {
18541854
}
18551855

18561856
info event LocalTemperatureChange = 1 {
1857-
temperature currentLocalTemperature = 0;
1857+
nullable temperature currentLocalTemperature = 0;
18581858
}
18591859

18601860
info event OccupancyChange = 2 {
@@ -1864,7 +1864,7 @@ cluster Thermostat = 513 {
18641864

18651865
info event SetpointChange = 3 {
18661866
SystemModeEnum systemMode = 0;
1867-
OccupancyBitmap occupancy = 1;
1867+
optional OccupancyBitmap occupancy = 1;
18681868
optional temperature previousSetpoint = 2;
18691869
temperature currentSetpoint = 3;
18701870
}
@@ -1880,13 +1880,13 @@ cluster Thermostat = 513 {
18801880
}
18811881

18821882
info event ActiveScheduleChange = 6 {
1883-
optional octet_string previousScheduleHandle = 0;
1884-
octet_string currentScheduleHandle = 1;
1883+
optional nullable octet_string previousScheduleHandle = 0;
1884+
nullable octet_string currentScheduleHandle = 1;
18851885
}
18861886

18871887
info event ActivePresetChange = 7 {
1888-
optional octet_string previousPresetHandle = 0;
1889-
octet_string currentPresetHandle = 1;
1888+
optional nullable octet_string previousPresetHandle = 0;
1889+
nullable octet_string currentPresetHandle = 1;
18901890
}
18911891

18921892
readonly attribute nullable temperature localTemperature = 0;

0 commit comments

Comments
 (0)