forked from SiliconLabs/UnifySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SiliconLabsGH-31: Custom Thermostat Cluster
Forwarded: SiliconLabs#31 Bug-SiliconLabs: UIC-3071 Bug-Github: SiliconLabs#31
- Loading branch information
1 parent
3b43b68
commit 29107ef
Showing
2 changed files
with
31 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Used to expose Protocol (ZWave) specific attributes to Unify. | ||
--> | ||
<zcl:cluster xmlns:zcl="http://zigbee.org/zcl/clusters" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:type="http://zigbee.org/zcl/types" | ||
xmlns:xi="http://www.w3.org/2001/XInclude" xsi:schemaLocation="http://zigbee.org/zcl/clusters cluster.xsd http://zigbee.org/zcl/types type.xsd" id="FD15" revision="1" name="UnifyThermostat"> | ||
<classification role="application" picsCode="TSTAT" primaryTransaction="2" /> | ||
<server> | ||
<attributes> | ||
<attribute id="0003" name="OperatingState" type="enum8" writable="true" required="true" default="0"> | ||
<restriction> | ||
<type:enumeration value="00" name="Off" /> | ||
<type:enumeration value="01" name="Heating" /> | ||
<type:enumeration value="02" name="Cooling" /> | ||
<type:enumeration value="03" name="FanOnly" /> | ||
<type:enumeration value="04" name="PendingHeat" /> | ||
<type:enumeration value="05" name="PendingCool" /> | ||
<type:enumeration value="06" name="Vent/Economizer" /> | ||
<type:enumeration value="07" name="AuxHeating" /> | ||
<type:enumeration value="08" name="2ndStageHeating" /> | ||
<type:enumeration value="09" name="2ndStageCooling" /> | ||
<type:enumeration value="0A" name="2ndStageAuxHeat" /> | ||
<type:enumeration value="0B" name="3rdStageAuxHeat" /> | ||
</restriction> | ||
</attribute> | ||
</attributes> | ||
</server> | ||
</zcl:cluster> |
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