-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request/boolean state cluster (#10839)
* 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
1 parent
a76fbd4
commit 9007635
Showing
41 changed files
with
1,210 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/app/zap-templates/zcl/data-model/chip/boolean-state-cluster.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
src/controller/java/zap-generated/chip/devicecontroller/ChipClusters.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.