Skip to content

Commit

Permalink
Pull request/boolean state cluster (#10839)
Browse files Browse the repository at this point in the history
* Implemented Boolean state cluster

* Regenerate all for Boolean State Cluster

* Revert autoformatted result in vscode

* Removed files with no logic

* Rebase on ToT and regenerate
  • Loading branch information
fessehaeve authored and pull[bot] committed Nov 5, 2021
1 parent a76fbd4 commit 9007635
Show file tree
Hide file tree
Showing 41 changed files with 1,210 additions and 66 deletions.
67 changes: 67 additions & 0 deletions examples/all-clusters-app/all-clusters-common/all-clusters-app.zap
Original file line number Diff line number Diff line change
Expand Up @@ -9178,6 +9178,73 @@
}
]
},
{
"name": "Boolean State",
"code": 69,
"mfgCode": null,
"define": "BOOLEAN_STATE_CLUSTER",
"side": "client",
"enabled": 0,
"commands": [],
"attributes": [
{
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
"side": "client",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "1",
"reportable": 0,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
}
]
},
{
"name": "Boolean State",
"code": 69,
"mfgCode": null,
"define": "BOOLEAN_STATE_CLUSTER",
"side": "server",
"enabled": 1,
"commands": [],
"attributes": [
{
"name": "StateValue",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
"side": "server",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "1",
"reportable": 0,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
}
]
},
{
"name": "Door Lock",
"code": 257,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0"?>
<!--
Copyright (c) 2021 Project CHIP Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<configurator>
<domain name="CHIP"/>

<cluster>
<name>Boolean State</name>
<domain>General</domain>
<description>This cluster provides an interface to a boolean state called StateValue.</description>
<code>0x0045</code>
<define>BOOLEAN_STATE_CLUSTER</define>
<client tick="false" init="false">true</client>
<server tick="false" init="false">true</server>
<globalAttribute side="either" code="0xFFFD" value="1"/>
<attribute side="server" code="0x0000" define="STATE_VALUE" type="boolean" writable="false" default="0" reportable="true" optional="false">StateValue</attribute>

<event code="0x0000" name="StateChange" priority="info" side="server">
<description>This event SHALL be generated when the StateValue attribute changes.</description>
<field id="0" name="StateValue" type="boolean"/>
</event>
</cluster>
</configurator>
1 change: 1 addition & 0 deletions src/app/zap-templates/zcl/zcl.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"audio-output-cluster.xml",
"basic-information-cluster.xml",
"binding-cluster.xml",
"boolean-state-cluster.xml",
"bridged-device-basic.xml",
"chip-devices.xml",
"chip-ota.xml",
Expand Down
2 changes: 2 additions & 0 deletions src/app/zap_cluster_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
'BASIC_CLUSTER': ['basic'],
'BINARY_INPUT_BASIC_CLUSTER': [],
'BINDING_CLUSTER': ['bindings'],
'BOOLEAN_STATE_CLUSTER': [],
'BRIDGED_DEVICE_BASIC_CLUSTER': [],
'COLOR_CONTROL_CLUSTER': ['color-control-server'],
'COMMISSIONING_CLUSTER': [],
Expand Down Expand Up @@ -83,6 +84,7 @@
'BASIC_CLUSTER': [],
'BINARY_INPUT_BASIC_CLUSTER': [],
'BINDING_CLUSTER': [],
'BOOLEAN_STATE_CLUSTER': [],
'BRIDGED_DEVICE_BASIC_CLUSTER': [],
'COLOR_CONTROL_CLUSTER': [],
'COMMISSIONING_CLUSTER': [],
Expand Down
67 changes: 67 additions & 0 deletions src/controller/data_model/controller-clusters.zap
Original file line number Diff line number Diff line change
Expand Up @@ -5202,6 +5202,73 @@
}
]
},
{
"name": "Boolean State",
"code": 69,
"mfgCode": null,
"define": "BOOLEAN_STATE_CLUSTER",
"side": "client",
"enabled": 1,
"commands": [],
"attributes": [
{
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
"side": "client",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "1",
"reportable": 0,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
}
]
},
{
"name": "Boolean State",
"code": 69,
"mfgCode": null,
"define": "BOOLEAN_STATE_CLUSTER",
"side": "server",
"enabled": 0,
"commands": [],
"attributes": [
{
"name": "StateValue",
"code": 0,
"mfgCode": null,
"side": "server",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "0",
"reportable": 1,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
},
{
"name": "ClusterRevision",
"code": 65533,
"mfgCode": null,
"side": "server",
"included": 1,
"storageOption": "RAM",
"singleton": 0,
"bounded": 0,
"defaultValue": "1",
"reportable": 0,
"minInterval": 1,
"maxInterval": 65534,
"reportableChange": 0
}
]
},
{
"name": "Door Lock",
"code": 257,
Expand Down
105 changes: 105 additions & 0 deletions src/controller/java/zap-generated/CHIPClusters-JNI.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9007635

Please sign in to comment.