Skip to content

Commit f546499

Browse files
committed
p/UnifySDK: Add Application Status cc
Signed-off-by: Philippe Coval <[email protected]>
1 parent de5870b commit f546499

File tree

3 files changed

+3986
-0
lines changed

3 files changed

+3986
-0
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
From e7a422fffa050bce6e81b365244665b28f430dbc Mon Sep 17 00:00:00 2001
2+
From: Viet <[email protected]>
3+
Date: Tue, 1 Oct 2024 14:21:40 +0700
4+
Subject: [PATCH] UIC-3275: Custom Application Status cluster
5+
6+
---
7+
.../dotdot-xml/Unify_ApplicationStatus.xml | 29 +++++++++++++++++++
8+
components/uic_dotdot/dotdot-xml/library.xml | 3 +-
9+
2 files changed, 31 insertions(+), 1 deletion(-)
10+
create mode 100644 components/uic_dotdot/dotdot-xml/Unify_ApplicationStatus.xml
11+
12+
diff --git a/components/uic_dotdot/dotdot-xml/Unify_ApplicationStatus.xml b/components/uic_dotdot/dotdot-xml/Unify_ApplicationStatus.xml
13+
new file mode 100644
14+
index 0000000000..2d51efb7ee
15+
--- /dev/null
16+
+++ b/components/uic_dotdot/dotdot-xml/Unify_ApplicationStatus.xml
17+
@@ -0,0 +1,29 @@
18+
+<?xml version="1.0"?>
19+
+<!--
20+
+Zigbee Alliance owns the copyright to the text and content displayed or
21+
+included in this document (including in PDF, XML files and other formats) in
22+
+all forms of media, which copyright is protected by the copyright laws of the
23+
+United States and by international treaties. Full text of licensing terms
24+
+applicable to this document can be found in the LICENSE.md file.
25+
+-->
26+
+<zcl:cluster xmlns:zcl="http://zigbee.org/zcl/clusters"
27+
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
28+
+ xmlns:type="http://zigbee.org/zcl/types"
29+
+ xmlns:xi="http://www.w3.org/2001/XInclude"
30+
+ xsi:schemaLocation="http://zigbee.org/zcl/clusters cluster.xsd http://zigbee.org/zcl/types type.xsd"
31+
+ id="FFA2" revision="1" name="ApplicationStatus">
32+
+ <classification role="application" picsCode="ASTT" primaryTransaction="1" />
33+
+ <server>
34+
+ <attributes>
35+
+ <attribute id="0000" name="BusyStatus" type="enum8" reportRequired="true" required="true">
36+
+ <restriction>
37+
+ <type:enumeration value="00" name="Try again later" />
38+
+ <type:enumeration value="01" name="Try again in WaitTime seconds" />
39+
+ <type:enumeration value="02" name="Request queued" />
40+
+ </restriction>
41+
+ </attribute>
42+
+ <attribute id="0001" name="WaitTime" type="uint8" required="true" default="0" />
43+
+ <attribute id="0002" name="RejectStatus" type="bool" required="true" />
44+
+ </attributes>
45+
+ </server>
46+
+</zcl:cluster>
47+
diff --git a/components/uic_dotdot/dotdot-xml/library.xml b/components/uic_dotdot/dotdot-xml/library.xml
48+
index 2fdb5c5778..6bddc211ce 100644
49+
--- a/components/uic_dotdot/dotdot-xml/library.xml
50+
+++ b/components/uic_dotdot/dotdot-xml/library.xml
51+
@@ -502,5 +502,6 @@ applicable to this document can be found in the LICENSE.md file.
52+
<xi:include href="Unify_Thermostat.xml" parse="xml"/>
53+
<xi:include href="Unify_FanControl.xml" parse="xml"/>
54+
<xi:include href="Unify_MultilevelSensor.xml" parse="xml"/>
55+
- <xi:include href="Unify_ScheduleEntryLock.xml" parse="xml"/>
56+
+ <xi:include href="Unify_ScheduleEntryLock.xml" parse="xml"/>
57+
+ <xi:include href="Unify_ApplicationStatus.xml" parse="xml"/>
58+
</zcl:library>
59+
--
60+
2.39.5
61+

0 commit comments

Comments
 (0)