Skip to content

Commit

Permalink
Fixed All Clusters App ZAP Example File (#25046)
Browse files Browse the repository at this point in the history
* Fixed All Clusters App ZAP File

  - Removed all Thread Network Diagnostics Cluster events, which are currently
    not implemented in the SDK at all.
  - Removed all Actions Cluster events, which are currently not implemented
    in the SDK.
  - Removed StateChange event of the Boolean State Cluster, which is not implemented
    for the All Clusters App.
  - Removed all events of the Pump Configuration and Control Cluster, which are currently
    not implemented in the SDK.

* ZAP REGEN
  • Loading branch information
emargolis authored and pull[bot] committed Feb 13, 2024
1 parent 7e88cca commit 3793954
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 144 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4449,8 +4449,6 @@ endpoint 0 {
}

server cluster ThreadNetworkDiagnostics {
emits event ConnectionStatus;
emits event NetworkFaultChange;
callback attribute channel;
callback attribute routingRole;
callback attribute networkName;
Expand Down Expand Up @@ -4708,8 +4706,6 @@ endpoint 1 {
}

server cluster Actions {
emits event StateChanged;
emits event ActionFailed;
callback attribute actionList;
callback attribute endpointLists;
callback attribute setupURL;
Expand Down Expand Up @@ -4751,7 +4747,6 @@ endpoint 1 {
}

server cluster BooleanState {
emits event StateChange;
ram attribute stateValue;
ram attribute featureMap;
ram attribute clusterRevision default = 1;
Expand Down Expand Up @@ -4852,18 +4847,6 @@ endpoint 1 {
}

server cluster PumpConfigurationAndControl {
emits event SupplyVoltageLow;
emits event SupplyVoltageHigh;
emits event PowerMissingPhase;
emits event SystemPressureLow;
emits event SystemPressureHigh;
emits event DryRunning;
emits event MotorTemperatureHigh;
emits event PumpMotorFatalFailure;
emits event ElectronicTemperatureHigh;
emits event PumpBlocked;
emits event SensorFailure;
emits event ElectronicNonFatalFailure;
ram attribute maxPressure;
ram attribute maxSpeed;
ram attribute maxFlow;
Expand Down
127 changes: 0 additions & 127 deletions examples/all-clusters-app/all-clusters-common/all-clusters-app.zap
Original file line number Diff line number Diff line change
Expand Up @@ -4885,22 +4885,6 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "ConnectionStatus",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "NetworkFaultChange",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -10746,22 +10730,6 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "StateChanged",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "ActionFailed",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -12738,15 +12706,6 @@
"maxInterval": 65534,
"reportableChange": 0
}
],
"events": [
{
"name": "StateChange",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down Expand Up @@ -14959,92 +14918,6 @@
"maxInterval": 65344,
"reportableChange": 0
}
],
"events": [
{
"name": "SupplyVoltageLow",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "SupplyVoltageHigh",
"code": 1,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "PowerMissingPhase",
"code": 2,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "SystemPressureLow",
"code": 3,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "SystemPressureHigh",
"code": 4,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "DryRunning",
"code": 5,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "MotorTemperatureHigh",
"code": 6,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "PumpMotorFatalFailure",
"code": 7,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "ElectronicTemperatureHigh",
"code": 8,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "PumpBlocked",
"code": 9,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "SensorFailure",
"code": 10,
"mfgCode": null,
"side": "server",
"included": 1
},
{
"name": "ElectronicNonFatalFailure",
"code": 11,
"mfgCode": null,
"side": "server",
"included": 1
}
]
},
{
Expand Down

0 comments on commit 3793954

Please sign in to comment.