Skip to content

Commit

Permalink
Updated all remaining app's ZAP files with supported events. (#25226)
Browse files Browse the repository at this point in the history
* Added Supported Events to the Pump Controller App ZAP File

* Added Supported Events to the OTA Requestor App ZAP File

* Added Supported Events to the OTA Provider App ZAP File

* Added Supported Events to the Light Switch App ZAP File

* Added Supported Events to the Temperature Measurement App ZAP File

* Added Supported Events to the Placeholder Config App 2 ZAP File

* Added Supported Events to the Placeholder Config App 1 ZAP File

* Added Supported Events to the Log Source App ZAP File

* Added Supported Events to the Dynamic Bridge App ZAP File

* Added Supported Events to the Contact Sensor App ZAP File

* Added Supported Events to the Sample App ZAP File

* Added Supported Events to the CHEF Window Covering App ZAP File

* Added Supported Events to the CHEF Thermostat App ZAP File

* Added Supported Events to the CHEF Temperature Sensor App ZAP File

* Added Supported Events to the CHEF Speaker App ZAP File

* Added Supported Events to the CHEF Pressure Sensor App ZAP File

* Added Supported Events to the CHEF OnOff Plugin Unit App ZAP File

* Added Supported Events to the CHEF OnOff Light Switch App ZAP File

* Added Supported Events to the CHEF OnOff Light App ZAP File

* Added Supported Events to the CHEF Occupancy Sensor App ZAP File

* Added Supported Events to the CHEF Light Sensor App ZAP File

* Added Supported Events to the CHEF Humidity Sensor App ZAP File

* Added Supported Events to the CHEF Heating Cooling Unit App ZAP File

* Added Supported Events to the CHEF Flow Sensor App ZAP File

* Added Supported Events to the CHEF Fan App ZAP File

* Added Supported Events to the CHEF Extended Color Light App ZAP File

* Added Supported Events to the CHEF Door Lock App ZAP File

* Added Supported Events to the CHEF Dimmable Light App ZAP File

* Added Supported Events to the CHEF Contact Sensor App ZAP File

* Added Supported Events to the CHEF Color Temperature Light App ZAP File

* Added Supported Events to the CHEF Dimmable Light App ZAP File

* ZAP REGEN
  • Loading branch information
emargolis authored and pull[bot] committed Nov 23, 2023
1 parent 669f195 commit 1606690
Show file tree
Hide file tree
Showing 61 changed files with 2,525 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1426,6 +1426,8 @@ endpoint 0 {
}

server cluster AccessControl {
emits event AccessControlEntryChanged;
emits event AccessControlExtensionChanged;
callback attribute acl;
callback attribute extension;
callback attribute attributeList;
Expand All @@ -1434,6 +1436,9 @@ endpoint 0 {
}

server cluster BasicInformation {
emits event StartUp;
emits event ShutDown;
emits event Leave;
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
Expand All @@ -1458,6 +1463,9 @@ endpoint 0 {
}

server cluster OtaSoftwareUpdateRequestor {
emits event StateTransition;
emits event VersionApplied;
emits event DownloadError;
callback attribute defaultOTAProviders;
ram attribute updatePossible default = 1;
ram attribute updateState;
Expand Down Expand Up @@ -1495,6 +1503,7 @@ endpoint 0 {
}

server cluster GeneralDiagnostics {
emits event BootReason;
callback attribute networkInterfaces;
callback attribute rebootCount;
callback attribute upTime;
Expand Down Expand Up @@ -1586,6 +1595,9 @@ endpoint 0 {
}

server cluster WiFiNetworkDiagnostics {
emits event Disconnection;
emits event AssociationFailure;
emits event ConnectionStatus;
callback attribute bssid;
callback attribute securityType;
callback attribute wiFiVersion;
Expand Down
94 changes: 94 additions & 0 deletions examples/chef/devices/noip_rootnode_dimmablelight_bCwGYSDpoe.zap
Original file line number Diff line number Diff line change
Expand Up @@ -1082,6 +1082,22 @@
"maxInterval": 65534,
"reportableChange": 0
}
],
"events": [
{
"name": "AccessControlEntryChanged",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "AccessControlExtensionChanged",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -1454,6 +1470,29 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "StartUp",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "ShutDown",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "Leave",
"code": 2,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -1740,6 +1779,29 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "StateTransition",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "VersionApplied",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "DownloadError",
"code": 2,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -2700,6 +2762,15 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "BootReason",
"code": 3,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -4214,6 +4285,29 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "Disconnection",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "AssociationFailure",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "ConnectionStatus",
"code": 2,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1445,6 +1445,8 @@ endpoint 0 {
}

server cluster AccessControl {
emits event AccessControlEntryChanged;
emits event AccessControlExtensionChanged;
callback attribute acl;
callback attribute extension;
callback attribute subjectsPerAccessControlEntry;
Expand All @@ -1456,6 +1458,9 @@ endpoint 0 {
}

server cluster BasicInformation {
emits event StartUp;
emits event ShutDown;
emits event Leave;
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
Expand All @@ -1481,6 +1486,9 @@ endpoint 0 {
}

server cluster OtaSoftwareUpdateRequestor {
emits event StateTransition;
emits event VersionApplied;
emits event DownloadError;
callback attribute defaultOTAProviders;
ram attribute updatePossible default = 1;
ram attribute updateState;
Expand Down Expand Up @@ -1518,6 +1526,7 @@ endpoint 0 {
}

server cluster GeneralDiagnostics {
emits event BootReason;
callback attribute networkInterfaces;
callback attribute rebootCount;
callback attribute upTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1130,6 +1130,22 @@
"maxInterval": 65534,
"reportableChange": 0
}
],
"events": [
{
"name": "AccessControlEntryChanged",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "AccessControlExtensionChanged",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -1518,6 +1534,29 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "StartUp",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "ShutDown",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "Leave",
"code": 2,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -1804,6 +1843,29 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "StateTransition",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "VersionApplied",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "DownloadError",
"code": 2,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -2796,6 +2858,15 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "BootReason",
"code": 3,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1130,6 +1130,8 @@ endpoint 0 {
}

server cluster AccessControl {
emits event AccessControlEntryChanged;
emits event AccessControlExtensionChanged;
callback attribute acl;
callback attribute extension;
callback attribute attributeList;
Expand All @@ -1138,6 +1140,9 @@ endpoint 0 {
}

server cluster BasicInformation {
emits event StartUp;
emits event ShutDown;
emits event Leave;
callback attribute dataModelRevision default = 10;
callback attribute vendorName;
callback attribute vendorID;
Expand All @@ -1162,6 +1167,9 @@ endpoint 0 {
}

server cluster OtaSoftwareUpdateRequestor {
emits event StateTransition;
emits event VersionApplied;
emits event DownloadError;
callback attribute defaultOTAProviders;
ram attribute updatePossible default = 1;
ram attribute updateState;
Expand Down Expand Up @@ -1212,6 +1220,7 @@ endpoint 0 {
}

server cluster GeneralDiagnostics {
emits event BootReason;
callback attribute networkInterfaces;
callback attribute rebootCount;
callback attribute upTime;
Expand Down
Loading

0 comments on commit 1606690

Please sign in to comment.