forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwindow-covering.xml
396 lines (383 loc) · 17.9 KB
/
window-covering.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?xml version="1.0"?>
<!--
Copyright (c) 2008,2020 Silicon Labs.
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>Window Covering</name>
<domain>Closures</domain>
<code>0x0102</code>
<define>WINDOW_COVERING_CLUSTER</define>
<description>Provides an interface for controlling and adjusting automatic window coverings. </description>
<!-- Abbreviations used in descriptions -->
<tag name="LF" description="Lift Control"/>
<tag name="TL" description="Tilt Control"/>
<tag name="PA_LF" description="Position Aware Lift"/>
<tag name="ABS" description="Absolute Positioning"/>
<tag name="PA_TL" description="Position Aware Tilt"/>
<client tick="false" init="false">true</client>
<server tick="false" init="false">true</server>
<!-- Current cluster version -->
<globalAttribute side="either" code="0xFFFD" value="5"/>
<features>
<feature bit="0" code="LF" name="Lift" summary="Lift control and behavior for lifting/sliding window coverings">
<optionalConform choice="a" more="true"/>
</feature>
<feature bit="1" code="TL" name="Tilt" summary="Tilt control and behavior for tilting window coverings">
<optionalConform choice="a" more="true"/>
</feature>
<feature bit="2" code="PA_LF" name="PositionAwareLift" summary="Position aware lift control is supported.">
<optionalConform>
<feature name="LF"/>
</optionalConform>
</feature>
<feature bit="3" code="ABS" name="AbsolutePosition" summary="Absolute positioning is supported.">
<optionalConform/>
</feature>
<feature bit="4" code="PA_TL" name="PositionAwareTilt" summary="Position aware tilt control is supported.">
<optionalConform>
<feature name="TL"/>
</optionalConform>
</feature>
</features>
<!-- Window Covering Information Attribute Set -->
<!-- Conformance feature M -->
<attribute side="server" code="0x0000" name="Type" define="WC_TYPE" type="Type" min="0x00" max="0x09" default="0x00">
<mandatoryConform/>
</attribute>
<!-- Conformance feature [LF & PA_LF & ABS] - for now optional -->
<attribute side="server" code="0x0001" name="PhysicalClosedLimitLift" define="WC_PHYSICAL_CLOSED_LIMIT_LIFT" type="int16u" default="0x0000" optional="true">
<optionalConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
<feature name="ABS"/>
</andTerm>
</optionalConform>
</attribute>
<!-- Conformance feature [TL & PA_TL & ABS] - for now optional -->
<attribute side="server" code="0x0002" name="PhysicalClosedLimitTilt" define="WC_PHYSICAL_CLOSED_LIMIT_TILT" type="int16u" default="0x0000" optional="true">
<optionalConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
<feature name="ABS"/>
</andTerm>
</optionalConform>
</attribute>
<!-- Conformance feature [LF & PA_LF & ABS] - for now optional -->
<attribute side="server" code="0x0003" name="CurrentPositionLift" define="WC_CURRENT_POSITION_LIFT" type="int16u" max="65534" isNullable="true" optional="true">
<optionalConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
<feature name="ABS"/>
</andTerm>
</optionalConform>
</attribute>
<!-- Conformance feature [TL & PA_TL & ABS] - for now optional -->
<attribute side="server" code="0x0004" name="CurrentPositionTilt" define="WC_CURRENT_POSITION_TILT" type="int16u" max="65534" isNullable="true" optional="true">
<optionalConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
<feature name="ABS"/>
</andTerm>
</optionalConform>
</attribute>
<!-- Conformance feature [LF] - for now optional -->
<attribute side="server" code="0x0005" name="NumberOfActuationsLift" define="WC_NUMBER_OF_ACTUATIONS_LIFT" type="int16u" default="0x0000" optional="true">
<optionalConform>
<feature name="LF"/>
</optionalConform>
</attribute>
<!-- Conformance feature [TL] - for now optional -->
<attribute side="server" code="0x0006" name="NumberOfActuationsTilt" define="WC_NUMBER_OF_ACTUATIONS_TILT" type="int16u" default="0x0000" optional="true">
<optionalConform>
<feature name="TL"/>
</optionalConform>
</attribute>
<!-- Conformance feature M -->
<attribute side="server" code="0x0007" name="ConfigStatus" define="WC_CONFIG_STATUS" type="ConfigStatus" min="0x00" max="0x7F" default="0x03">
<mandatoryConform/>
</attribute>
<!-- Conformance feature [LF & PA_LF] - for now optional -->
<attribute side="server" code="0x0008" name="CurrentPositionLiftPercentage" define="WC_CURRENT_POSITION_LIFT_PERCENTAGE" type="percent" isNullable="true" optional="true" reportable="true">
<optionalConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
</andTerm>
</optionalConform>
</attribute>
<!-- Conformance feature [TL & PA_TL] - for now optional -->
<attribute side="server" code="0x0009" name="CurrentPositionTiltPercentage" define="WC_CURRENT_POSITION_TILT_PERCENTAGE" type="percent" isNullable="true" optional="true" reportable="true">
<optionalConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
</andTerm>
</optionalConform>
</attribute>
<!-- Conformance feature M -->
<attribute side="server" code="0x000A" name="OperationalStatus" define="WC_OPERATIONAL_STATUS" type="OperationalStatus" min="0x00" max="0x7F" default="0x00" reportable="true">
<mandatoryConform/>
</attribute>
<!-- Conformance feature LF & PA_LF - for now optional -->
<attribute side="server" code="0x000B" name="TargetPositionLiftPercent100ths" define="WC_TARGET_POSITION_LIFT_PERCENT100THS" type="percent100ths" isNullable="true" optional="true" reportable="true">
<mandatoryConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
</andTerm>
</mandatoryConform>
</attribute>
<!-- Conformance feature TL & PA_TL - for now optional -->
<attribute side="server" code="0x000C" name="TargetPositionTiltPercent100ths" define="WC_TARGET_POSITION_TILT_PERCENT100THS" type="percent100ths" isNullable="true" optional="true" reportable="true">
<mandatoryConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
</andTerm>
</mandatoryConform>
</attribute>
<!-- Conformance feature M -->
<attribute side="server" code="0x000D" name="EndProductType" define="WC_END_PRODUCT_TYPE" type="EndProductType" min="0x00" max="0x20" default="0x00">
<mandatoryConform/>
</attribute>
<!-- Conformance feature LF & PA_LF - for now optional -->
<attribute side="server" code="0x000E" name="CurrentPositionLiftPercent100ths" define="WC_CURRENT_POSITION_LIFT_PERCENT100THS" type="percent100ths" max="10000" isNullable="true" optional="true" reportable="true">
<mandatoryConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
</andTerm>
</mandatoryConform>
</attribute>
<!-- Conformance feature TL & PA_TL - for now optional -->
<attribute side="server" code="0x000F" name="CurrentPositionTiltPercent100ths" define="WC_CURRENT_POSITION_TILT_PERCENT100THS" type="percent100ths" max="10000" isNullable="true" optional="true" reportable="true">
<mandatoryConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
</andTerm>
</mandatoryConform>
</attribute>
<!-- Window Covering Settings Attribute Set -->
<!-- Conformance feature LF & PA_LF & ABS - for now optional -->
<attribute side="server" code="0x0010" name="InstalledOpenLimitLift" define="WC_INSTALLED_OPEN_LIMIT_LIFT" type="int16u" max="65534" default="0x0000" optional="true">
<mandatoryConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
<feature name="ABS"/>
</andTerm>
</mandatoryConform>
</attribute>
<attribute side="server" code="0x0011" name="InstalledClosedLimitLift" define="WC_INSTALLED_CLOSED_LIMIT_LIFT" type="int16u" max="65534" default="65534" optional="true">
<mandatoryConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
<feature name="ABS"/>
</andTerm>
</mandatoryConform>
</attribute>
<!-- Conformance feature TL & PA_TL & ABS - for now optional -->
<attribute side="server" code="0x0012" name="InstalledOpenLimitTilt" define="WC_INSTALLED_OPEN_LIMIT_TILT" type="int16u" max="65534" default="0x0000" optional="true">
<mandatoryConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
<feature name="ABS"/>
</andTerm>
</mandatoryConform>
</attribute>
<attribute side="server" code="0x0013" name="InstalledClosedLimitTilt" define="WC_INSTALLED_CLOSED_LIMIT_TILT" type="int16u" max="65534" default="65534" optional="true">
<mandatoryConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
<feature name="ABS"/>
</andTerm>
</mandatoryConform>
</attribute>
<!-- Conformance Deprecated -->
<!-- attribute side="server" writable="true" code="0x0014" define="WC_VELOCITY_LIFT" type="int16u" min="0x0000" max="0xFFFF" default="0x0000" optional="true" >VelocityLift -->
<!-- attribute side="server" writable="true" code="0x0015" define="WC_ACCELERATION_TIME_LIFT" type="int16u" min="0x0000" max="0xFFFF" default="0x0000" optional="true" >AccelerationTimeLift -->
<!-- attribute side="server" writable="true" code="0x0016" define="WC_DECELERATION_TIME_LIFT" type="int16u" min="0x0000" max="0xFFFF" default="0x0000" optional="true" >DecelerationTimeLift -->
<!-- Conformance feature M -->
<attribute side="server" writable="true" code="0x0017" name="Mode" define="WC_MODE" type="Mode" min="0x00" max="0x0F" default="0x00" optional="false" >
<access op="read" role="view" />
<access op="write" role="manage"/>
<mandatoryConform/>
</attribute>
<!-- Conformance Deprecated -->
<!-- attribute side="server" writable="true" code="0x0018" define="WC_INTERMEDIATE_SETPOINTS_LIFT" type="octet_string" length="254" default="1,0x0000" optional="true" >IntermediateSetpointsLift</attribute> -->
<!-- attribute side="server" writable="true" code="0x0019" define="WC_INTERMEDIATE_SETPOINTS_TILT" type="octet_string" length="254" default="1,0x0000" optional="true" >IntermediateSetpointsTilt</attribute> -->
<!-- Conformance feature Optional -->
<attribute side="server" code="0x001A" name="SafetyStatus" define="WC_SAFETY_STATUS" type="SafetyStatus" min="0x0000" max="0xFFFF" default="0x0000" optional="true" reportable="true">
<optionalConform/>
</attribute>
<!-- Window Covering Command Set -->
<!-- Conformance feature M -->
<command source="client" code="0x00" name="UpOrOpen" optional="false" cli="zcl WindowCovering UpOrOpen">
<description>Moves window covering to InstalledOpenLimitLift and InstalledOpenLimitTilt</description>
<mandatoryConform/>
</command>
<command source="client" code="0x01" name="DownOrClose" optional="false" cli="zcl WindowCovering DownOrClose">
<description>Moves window covering to InstalledClosedLimitLift and InstalledCloseLimitTilt</description>
<mandatoryConform/>
</command>
<command source="client" code="0x02" name="StopMotion" optional="false" cli="zcl WindowCovering StopMotion">
<description>Stop any adjusting of window covering</description>
<mandatoryConform/>
</command>
<!-- Conformance feature [LF & ABS] - for now optional -->
<command source="client" code="0x04" name="GoToLiftValue" optional="true" cli="zcl WindowCovering GoToLiftValue">
<description>Go to lift value specified</description>
<arg name="LiftValue" type="int16u"/>
<optionalConform>
<andTerm>
<feature name="LF"/>
<feature name="ABS"/>
</andTerm>
</optionalConform>
</command>
<!-- Conformance feature LF & PA_LF | [LF] - for now optional -->
<command source="client" code="0x05" name="GoToLiftPercentage" optional="true" cli="zcl WindowCovering GoToLiftPercentage">
<description>Go to lift percentage specified</description>
<arg name="LiftPercent100thsValue" type="percent100ths"/>
<otherwiseConform>
<mandatoryConform>
<andTerm>
<feature name="LF"/>
<feature name="PA_LF"/>
</andTerm>
</mandatoryConform>
<optionalConform>
<feature name="LF"/>
</optionalConform>
</otherwiseConform>
</command>
<!-- Conformance feature [TL & ABS] - for now optional -->
<command source="client" code="0x07" name="GoToTiltValue" optional="true" cli="zcl WindowCovering GoToTiltValue">
<description>Go to tilt value specified</description>
<arg name="TiltValue" type="int16u"/>
<optionalConform>
<andTerm>
<feature name="TL"/>
<feature name="ABS"/>
</andTerm>
</optionalConform>
</command>
<!-- Conformance feature TL & PA_TL | [TL] - for now optional -->
<command source="client" code="0x08" name="GoToTiltPercentage" optional="true" cli="zcl WindowCovering GoToTiltPercentage">
<description>Go to tilt percentage specified</description>
<arg name="TiltPercent100thsValue" type="percent100ths"/>
<otherwiseConform>
<mandatoryConform>
<andTerm>
<feature name="TL"/>
<feature name="PA_TL"/>
</andTerm>
</mandatoryConform>
<optionalConform>
<feature name="TL"/>
</optionalConform>
</otherwiseConform>
</command>
</cluster>
<!-- Window Covering Descriptive Enum Set -->
<enum name="Type" type="enum8">
<cluster code="0x0102"/>
<item value="00" name="RollerShade"/>
<item value="01" name="RollerShade2Motor"/>
<item value="02" name="RollerShadeExterior"/>
<item value="03" name="RollerShadeExterior2Motor"/>
<item value="04" name="Drapery"/>
<item value="05" name="Awning"/>
<item value="06" name="Shutter"/>
<item value="07" name="TiltBlindTiltOnly"/>
<item value="08" name="TiltBlindLiftAndTilt"/>
<item value="09" name="ProjectorScreen"/>
<item value="255" name="Unknown"/>
</enum>
<enum name="EndProductType" type="enum8">
<cluster code="0x0102"/>
<item value="00" name="RollerShade"/>
<item value="01" name="RomanShade"/>
<item value="02" name="BalloonShade"/>
<item value="03" name="WovenWood"/>
<item value="04" name="PleatedShade"/>
<item value="05" name="CellularShade"/>
<item value="06" name="LayeredShade"/>
<item value="07" name="LayeredShade2D"/>
<item value="08" name="SheerShade"/>
<item value="09" name="TiltOnlyInteriorBlind"/>
<item value="10" name="InteriorBlind"/>
<item value="11" name="VerticalBlindStripCurtain"/>
<item value="12" name="InteriorVenetianBlind"/>
<item value="13" name="ExteriorVenetianBlind"/>
<item value="14" name="LateralLeftCurtain"/>
<item value="15" name="LateralRightCurtain"/>
<item value="16" name="CentralCurtain"/>
<item value="17" name="RollerShutter"/>
<item value="18" name="ExteriorVerticalScreen"/>
<item value="19" name="AwningTerracePatio"/>
<item value="20" name="AwningVerticalScreen"/>
<item value="21" name="TiltOnlyPergola"/>
<item value="22" name="SwingingShutter"/>
<item value="23" name="SlidingShutter"/>
<item value="255" name="Unknown"/>
</enum>
<!-- Window Covering BitFlag Meaning Set -->
<bitmap name="Mode" type="bitmap8">
<cluster code="0x0102"/>
<field mask="0x01" name="MotorDirectionReversed"/>
<field mask="0x02" name="CalibrationMode"/>
<field mask="0x04" name="MaintenanceMode"/>
<field mask="0x08" name="LedFeedback"/>
</bitmap>
<bitmap name="OperationalStatus" type="bitmap8">
<cluster code="0x0102"/>
<field mask="0x03" name="Global"/>
<field mask="0x0C" name="Lift"/>
<field mask="0x30" name="Tilt"/>
</bitmap>
<bitmap name="ConfigStatus" type="bitmap8">
<cluster code="0x0102"/>
<field mask="0x01" name="Operational"/>
<field mask="0x02" name="OnlineReserved"/>
<field mask="0x04" name="LiftMovementReversed"/>
<field mask="0x08" name="LiftPositionAware"/>
<field mask="0x10" name="TiltPositionAware"/>
<field mask="0x20" name="LiftEncoderControlled"/>
<field mask="0x40" name="TiltEncoderControlled"/>
</bitmap>
<bitmap name="SafetyStatus" type="bitmap16">
<cluster code="0x0102"/>
<field mask="0x0001" name="RemoteLockout"/>
<field mask="0x0002" name="TamperDetection"/>
<field mask="0x0004" name="FailedCommunication"/>
<field mask="0x0008" name="PositionFailure"/>
<field mask="0x0010" name="ThermalProtection"/>
<field mask="0x0020" name="ObstacleDetected"/>
<field mask="0x0040" name="Power"/>
<field mask="0x0080" name="StopInput"/>
<field mask="0x0100" name="MotorJammed"/>
<field mask="0x0200" name="HardwareFailure"/>
<field mask="0x0400" name="ManualOperation"/>
<field mask="0x0800" name="Protection"/>
</bitmap>
</configurator>