|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | +Copyright (c) 2023 Project CHIP Authors |
| 4 | +
|
| 5 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +you may not use this file except in compliance with the License. |
| 7 | +You may obtain a copy of the License at |
| 8 | +
|
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +
|
| 11 | +Unless required by applicable law or agreed to in writing, software |
| 12 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +See the License for the specific language governing permissions and |
| 15 | +limitations under the License. |
| 16 | +--> |
| 17 | +<configurator> |
| 18 | + <domain name="CHIP"/> |
| 19 | + |
| 20 | + <bitmap name="Feature" type="BITMAP32"> |
| 21 | + <cluster code="0x0053"/> |
| 22 | + <field mask="0x01" name="Spin"/> |
| 23 | + <field mask="0x02" name="Rinse"/> |
| 24 | + </bitmap> |
| 25 | + |
| 26 | + <cluster> |
| 27 | + <domain>Appliances</domain> |
| 28 | + <name>Washer Controls</name> |
| 29 | + <code>0x0053</code> |
| 30 | + <define>WASHER_CONTROLS_CLUSTER</define> |
| 31 | + <client init="false" tick="false">true</client> |
| 32 | + <server init="false" tick="false">true</server> |
| 33 | + <description>This cluster supports remotely monitoring and controling the different typs of functionality available to a washing device, such as a washing machine.</description> |
| 34 | + |
| 35 | + <globalAttribute side="server" code="0xFFFD" value="1" /> |
| 36 | + |
| 37 | + <attribute side="server" code="0x0000" define="SPIN_SPEEDS" type="ARRAY" entryType="CHAR_STRING" writable="false" isNullable="false" optional="true">SpinSpeeds</attribute> |
| 38 | + <attribute side="server" code="0x0001" define="SPIN_SPEED_CURRENT" type="INT8U" min="0x00" max="0x1F" writable="true" isNullable="true" optional="true">SpinSpeedCurrent</attribute> |
| 39 | + <attribute side="server" code="0x0002" define="NUMBER_OF_RINSES" type="INT8U" writable="true" isNullable="true" optional="true">NumberOfRinses</attribute> |
| 40 | + <attribute side="server" code="0x0003" define="MAXRINSES" type="INT8U" min="0x00" max="0x08" writable="false" optional="true">MaxRinses</attribute> |
| 41 | + </cluster> |
| 42 | +</configurator> |
0 commit comments