forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperational-state-rvc-cluster.xml
155 lines (133 loc) · 6.9 KB
/
operational-state-rvc-cluster.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?xml version="1.0"?>
<!--
Copyright (c) 2023 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"/>
<enum name="OperationalStateEnum" type="enum8">
<cluster code="0x0061"/>
<!-- These are the base values from the OperationalStateCluster, which have to
be copied in each derived cluster, due to ZAP XML constraints, until it
is possible to auto-include these without duplication in codegen. -->
<item name="Stopped" value="0x00"/>
<item name="Running" value="0x01"/>
<item name="Paused" value="0x02"/>
<item name="Error" value="0x03"/>
<!-- Derived cluster-specific values start below at 0x40 -->
<item name="SeekingCharger" value="0x40"/>
<item name="Charging" value="0x41"/>
<item name="Docked" value="0x42"/>
</enum>
<enum name="ErrorStateEnum" type="enum8">
<cluster code="0x0061"/>
<!-- These are the base values from the OperationalStateCluster, which have to
be copied in each derived cluster, due to ZAP XML constraints, until it
is possible to auto-include these without duplication in codegen. -->
<item name="NoError" value="0x00"/>
<item name="UnableToStartOrResume" value="0x01"/>
<item name="UnableToCompleteOperation" value="0x02"/>
<item name="CommandInvalidInState" value="0x03"/>
<!-- Derived cluster-specific values start below at 0x40 -->
<item name="FailedToFindChargingDock" value="0x40"/>
<item name="Stuck" value="0x41"/>
<item name="DustBinMissing" value="0x42"/>
<item name="DustBinFull" value="0x43"/>
<item name="WaterTankEmpty" value="0x44"/>
<item name="WaterTankMissing" value="0x45"/>
<item name="WaterTankLidOpen" value="0x46"/>
<item name="MopCleaningPadMissing" value="0x47"/>
</enum>
<cluster>
<domain>Robots</domain>
<name>RVC Operational State</name>
<code>0x0061</code>
<define>OPERATIONAL_STATE_RVC_CLUSTER</define>
<client init="false" tick="false">true</client>
<server init="false" tick="false">true</server>
<description>This cluster supports remotely monitoring and, where supported, changing the operational state of a Robotic Vacuum.</description>
<globalAttribute side="either" code="0xFFFD" value="1"/>
<attribute side="server" code="0x0000" name="PhaseList" define="PHASE_LIST" type="array" entryType="char_string" isNullable="true">
<mandatoryConform/>
</attribute>
<attribute side="server" code="0x0001" name="CurrentPhase" define="CURRENT_PHASE" type="int8u" min="0x00" max="0x1F" isNullable="true">
<mandatoryConform/>
</attribute>
<attribute side="server" code="0x0002" name="CountdownTime" define="COUNTDOWN_TIME" type="elapsed_s" min="0" max="259200" isNullable="true" optional="true">
<optionalConform/>
</attribute>
<attribute side="server" code="0x0003" name="OperationalStateList" define="OPERATIONAL_STATE_LIST" type="array" entryType="OperationalStateStruct">
<mandatoryConform/>
</attribute>
<!--
The type of this attribute in the spec is OperationalStateEnum, but the OperationalStateEnum in our XML
excludes the values from the base OperationalState cluster. Just use ENUM8 for the type, so it allows
both values from this cluster and from the base cluster.
-->
<attribute side="server" code="0x0004" name="OperationalState" define="OPERATIONAL_STATE" type="enum8">
<mandatoryConform/>
</attribute>
<attribute side="server" code="0x0005" name="OperationalError" define="OPERATIONAL_ERROR" type="ErrorStateStruct">
<mandatoryConform/>
</attribute>
<command source="client" code="0x00" name="Pause" response="OperationalCommandResponse" optional="true">
<description>Upon receipt, the device SHALL pause its operation if it is possible based on the current function of the server.</description>
<otherwiseConform>
<mandatoryConform>
<command name="Resume"/>
</mandatoryConform>
<optionalConform/>
</otherwiseConform>
</command>
<!-- Command Stop with code 0x01 is deprecated -->
<!-- Command Start with code 0x02 is deprecated -->
<command source="client" code="0x03" name="Resume" response="OperationalCommandResponse" optional="true">
<description>Upon receipt, the device SHALL resume its operation from the point it was at when it received the Pause command, or from the point when it was paused by means outside of this cluster (for example by manual button press).</description>
<otherwiseConform>
<mandatoryConform>
<command name="Pause"/>
</mandatoryConform>
<optionalConform/>
</otherwiseConform>
</command>
<command source="server" code="0x04" name="OperationalCommandResponse" optional="true">
<description>This command SHALL be generated in response to any of the Start, Stop, Pause, or Resume commands.</description>
<arg name="CommandResponseState" type="ErrorStateStruct"/>
<mandatoryConform>
<orTerm>
<command name="Pause"/>
<command name="Stop"/>
<command name="Start"/>
<command name="Resume"/>
</orTerm>
</mandatoryConform>
</command>
<command source="client" code="0x80" name="GoHome" response="OperationalCommandResponse" optional="true">
<description>On receipt of this command, the device SHALL start seeking the charging dock, if possible in the current state of the device.</description>
<otherwiseConform>
<provisionalConform/>
<optionalConform/>
</otherwiseConform>
</command>
<event side="server" code="0x00" priority="critical" name="OperationalError" optional="false">
<description>OperationalError</description>
<field id="0" name="ErrorState" type="ErrorStateStruct"/>
<mandatoryConform/>
</event>
<event side="server" code="0x01" priority="info" name="OperationCompletion" optional="true">
<description>OperationCompletion</description>
<field id="0" name="CompletionErrorCode" type="enum8" optional="false"/>
<field id="1" name="TotalOperationalTime" type="elapsed_s" isNullable="true" optional="true"/>
<field id="2" name="PausedTime" type="elapsed_s" isNullable="true" optional="true"/>
<optionalConform/>
</event>
</cluster>
</configurator>