forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoperational-state-oven-cluster.xml
126 lines (109 loc) · 5.92 KB
/
operational-state-oven-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
<?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="0x0048"/>
<!-- 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 -->
</enum>
<enum name="ErrorStateEnum" type="enum8">
<cluster code="0x0048"/>
<!-- 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 -->
</enum>
<cluster>
<domain>Appliances</domain>
<name>Oven Cavity Operational State</name>
<code>0x0048</code>
<define>OPERATIONAL_STATE_OVEN_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 an Oven.</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="0x00" 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>
<attribute side="server" code="0x0004" name="OperationalState" define="OPERATIONAL_STATE" type="OperationalStateEnum">
<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>
</command>
<command source="client" code="0x01" name="Stop" response="OperationalCommandResponse" optional="true">
<description>Upon receipt, the device SHALL stop its operation if it is at a position where it is safe to do so and/or permitted.</description>
<otherwiseConform>
<mandatoryConform>
<command name="Start"/>
</mandatoryConform>
<optionalConform/>
</otherwiseConform>
</command>
<command source="client" code="0x02" name="Start" response="OperationalCommandResponse" optional="true">
<description>Upon receipt, the device SHALL start its operation if it is safe to do so and the device is in an operational state from which it can be started.</description>
<optionalConform/>
</command>
<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>
</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>
<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" />
<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>