Skip to content

Commit e7d86e0

Browse files
authored
Database update (openhab#1160)
Signed-off-by: Chris Jackson <[email protected]>
1 parent 2bc6077 commit e7d86e0

28 files changed

+2423
-220
lines changed

ESH-INF/thing/abus/shwm10000_0_0.xml

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<thing:thing-descriptions bindingId="zwave"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xmlns:thing="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0"
5+
xsi:schemaLocation="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0
6+
http://eclipse.org/smarthome/schemas/thing-description/v1.0.0">
7+
8+
<thing-type id="abus_shwm10000_00_000" listed="false">
9+
<label>SHWM10000 Flood Sensor</label>
10+
<description><![CDATA[
11+
Flood Sensor<br /><h1>Overview</h1><p>The SHWM10000 consists of a base unit (detector) and a water sensor (sensor), which are connected by a cable. If the sensor comes into contact with water, inform the detector the gateway and an alarm is triggered.</p> <p>It detects sabotage when opening the case, has a battery-empty warning function and was designed for indoor installation.</p> <br /><h2>Inclusion Information</h2><p>Within 3 seconds, press 3 times on the tamper button.</p> <p>The status LED on the sensor front 3 x on. Repeat the inclusion process again if this was not successful.</p> <br /><h2>Exclusion Information</h2><p>Within 3 seconds, press 3 times on the tamper button. The status LED on the sensor front 3 x on.</p> <br /><h2>Wakeup Information</h2><table><tr><td>To wake-up the device immediately, please remove the front cover, and press the tamper key once.</td> </tr></table>
12+
]]></description>
13+
<category>Sensor</category>
14+
15+
<!-- CHANNEL DEFINITIONS -->
16+
<channels>
17+
<channel id="alarm_burglar" typeId="alarm_burglar">
18+
<label>Alarm (burglar)</label>
19+
<properties>
20+
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=BURGLAR</property>
21+
</properties>
22+
</channel>
23+
<channel id="alarm_flood" typeId="alarm_flood">
24+
<label>Alarm (flood)</label>
25+
<properties>
26+
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=FLOOD</property>
27+
</properties>
28+
</channel>
29+
<channel id="battery-level" typeId="system.battery-level">
30+
<properties>
31+
<property name="binding:*:PercentType">COMMAND_CLASS_BATTERY</property>
32+
</properties>
33+
</channel>
34+
</channels>
35+
36+
<!-- DEVICE PROPERTY DEFINITIONS -->
37+
<properties>
38+
<property name="vendor">ABUS Security-Center GmbH &amp; Co. KG</property>
39+
<property name="modelId">SHWM10000</property>
40+
<property name="manufacturerId">0403</property>
41+
<property name="manufacturerRef">0002:0002</property>
42+
<property name="dbReference">1042</property>
43+
<property name="defaultAssociations">1</property>
44+
</properties>
45+
46+
<!-- CONFIGURATION DESCRIPTIONS -->
47+
<config-description>
48+
49+
<!-- GROUP DEFINITIONS -->
50+
<parameter-group name="association">
51+
<context>link</context>
52+
<label>Association Groups</label>
53+
</parameter-group>
54+
55+
<!-- ASSOCIATION DEFINITIONS -->
56+
<parameter name="group_1" type="text" groupName="association" multiple="true">
57+
<label>1: Lifeline</label>
58+
<description><![CDATA[
59+
<br /><h1>Overview</h1><p>The device sends a notification report of the command class battery report, notification report, and local device reset notification, binary report.</p>
60+
]]></description>
61+
<multipleLimit>5</multipleLimit>
62+
</parameter>
63+
64+
<parameter name="group_2" type="text" groupName="association" multiple="true">
65+
<label>2: Root-Device-Group (Binary Sensor)</label>
66+
<description><![CDATA[
67+
<br /><h1>Overview</h1><p>Binary Sensor Command Class: Compatible with 300 Series</p> <ul><li>Sensor indicates the status of the open or closed door via lifeline.</li> <li>When the sensor changes state between closedand door is opened, the device is triggered.</li> </ul>
68+
]]></description>
69+
<multipleLimit>5</multipleLimit>
70+
</parameter>
71+
72+
<parameter name="group_3" type="text" groupName="association" multiple="true">
73+
<label>3: Root device group</label>
74+
<description><![CDATA[
75+
<br /><h1>Overview</h1><p>Binary Sensor Command Class: Compatible with 300 Series</p> <ul><li>Sensor indicates the status, door sensor has been removed.</li> <li>Device triggers when the sensor changes state tamper button detects.</li> </ul>
76+
]]></description>
77+
<multipleLimit>5</multipleLimit>
78+
</parameter>
79+
80+
<parameter name="group_4" type="text" groupName="association" multiple="true">
81+
<label>4: Root device group (notification)</label>
82+
<description><![CDATA[
83+
<br /><h1>Overview</h1><ul><li>Notification Open or Closed Status via Lifeline</li> <li>Device triggers when the sensor has a status change between closed and opened door recognizes.</li> </ul>
84+
]]></description>
85+
<multipleLimit>5</multipleLimit>
86+
</parameter>
87+
88+
<parameter name="group_5" type="text" groupName="association" multiple="true">
89+
<label>5: Root device group (notification)</label>
90+
<description><![CDATA[
91+
<br /><h1>Overview</h1><ul><li>Sensor reports the status door sensor has been removed.</li> <li>The device triggers when the sensor changes state tamper button detects.</li> </ul>
92+
]]></description>
93+
<multipleLimit>5</multipleLimit>
94+
</parameter>
95+
96+
<!-- STATIC DEFINITIONS -->
97+
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
98+
<label>Node ID</label>
99+
<advanced>true</advanced>
100+
</parameter>
101+
102+
</config-description>
103+
104+
</thing-type>
105+
106+
</thing:thing-descriptions>

ESH-INF/thing/devolo/mt2756_0_0.xml

+5-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,11 @@ The interval time for auto reporting each tick.<br /><ul><li>0 = Turn off all au
130130

131131
<!-- ASSOCIATION DEFINITIONS -->
132132
<parameter name="group_1" type="text" groupName="association" multiple="true">
133-
<label>1: Reports</label>
134-
<multipleLimit>8</multipleLimit>
133+
<label>1: Lifeline</label>
134+
<description><![CDATA[
135+
<br /><h1>Overview</h1><p>The device sends a notification report of the command class Battery report, notification report, and local device reset Notification, Binary Report.</p>
136+
]]></description>
137+
<multipleLimit>5</multipleLimit>
135138
</parameter>
136139

137140
<parameter name="group_2" type="text" groupName="association" multiple="true">

ESH-INF/thing/devolo/mt2792_0_0.xml

+38-3
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,44 @@ Restore switch state mode.<br /><h1>Overview</h1><p>Status of the plug if it is
207207
</parameter>
208208

209209
<!-- ASSOCIATION DEFINITIONS -->
210-
<parameter name="group_1" type="text" groupName="association">
211-
<label>1: Reports</label>
212-
<description>Grouping 1 includes, SWITCH_BINARY_REPORT, METER_REPORT, ALARM_REPORT.</description>
210+
<parameter name="group_1" type="text" groupName="association" multiple="true">
211+
<label>1: Lifeline</label>
212+
<description><![CDATA[
213+
<br /><h1>Overview</h1><p>The device sends a notification report of the command class battery report, notification report, and local device reset notification, binary report.</p>
214+
]]></description>
215+
<multipleLimit>5</multipleLimit>
216+
</parameter>
217+
218+
<parameter name="group_2" type="text" groupName="association" multiple="true">
219+
<label>2: Root-Device-group (Binary Sensor)</label>
220+
<description><![CDATA[
221+
<br /><h1>Overview</h1><p>Binary Sensor Command Class: Compatible with 300 Series</p> <ul><li>Sensor reports the status of the open or closed door via Lifeline.</li> <li>If the sensor detects a status change between closed and open door, the device is triggered.</li> </ul>
222+
]]></description>
223+
<multipleLimit>5</multipleLimit>
224+
</parameter>
225+
226+
<parameter name="group_3" type="text" groupName="association" multiple="true">
227+
<label>3: Root-Device-group</label>
228+
<description><![CDATA[
229+
<br /><h1>Overview</h1><p>Binary Sensor Command Class: Compatible with 300 Series</p> <ul><li>Sensor indicates the status, door sensor has been removed.</li> <li>Device triggers when the sensor changes state tamper button detects.</li> </ul>
230+
]]></description>
231+
<multipleLimit>5</multipleLimit>
232+
</parameter>
233+
234+
<parameter name="group_4" type="text" groupName="association" multiple="true">
235+
<label>4: Root device group (notification)</label>
236+
<description><![CDATA[
237+
<br /><h1>Overview</h1><ul><li>Notification Open or Closed Status via Lifeline</li> <li>Device triggers when the sensor has a status change between closed and opened door recognizes.</li> </ul>
238+
]]></description>
239+
<multipleLimit>5</multipleLimit>
240+
</parameter>
241+
242+
<parameter name="group_5" type="text" groupName="association" multiple="true">
243+
<label>5: Root device group (notification)</label>
244+
<description><![CDATA[
245+
<br /><h1>Overview</h1><ul><li>Sensor reports the status door sensor has been removed.</li> <li>The device triggers when the sensor changes state tamper button detects.</li> </ul>
246+
]]></description>
247+
<multipleLimit>5</multipleLimit>
213248
</parameter>
214249

215250
<!-- STATIC DEFINITIONS -->

ESH-INF/thing/elexa/dms01_0_0.xml

+126-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<thing-type id="elexa_dms01_00_000" listed="false">
99
<label>DMS01 Dome Wireless Siren</label>
1010
<description><![CDATA[
11-
Dome Wireless Siren<br /><h1>Overview</h1><p>Alert you with sounds and built-in LED’s to security threats and problems such as leaks and fires. It can also sound a mild chime when doors or windows open to let you know when people come and go.</p> <br /><h2>Inclusion Information</h2><p>Follow the instructions for your Z-Wave certified Controller to enter inclusion mode. When prompted by the Controller: 1. For proper inclusion, bring the Siren to within 10 feet of your Controller. After inclusion, the device can be moved to any desired location. 2. Remove the Back Plate of the Siren. 3. Remove the Battery Tabs. 4. Press the Connect Button quickly 3 times in a row. The LED Ring will flash five times indicating inclusion.</p> <br /><h2>Exclusion Information</h2><p>Follow the instructions for your Z-Wave certified Controller to enter exclusion mode. When prompted by the Controller: 1. Remove the Back Plate of the Siren. 2. Press the Connect Button quickly 3 times in a row. The LED Ring will flash five times indicating exclusion/disconnection.</p> <br /><h2>Wakeup Information</h2><p>The device can be forced to wake up to submit these reports or accept new settings immediately by simply pressing and holding the CONNECT BUTTON for two seconds. The LED RING will flash once indicating successful wake up.</p>
11+
Dome Wireless Siren<br /><h1>Overview</h1><p>Alert you with sounds and built-in LED’s to security threats and problems such as leaks and fires. It can also sound a mild chime when doors or windows open to let you know when people come and go.</p> <br /><h2>Inclusion Information</h2><p>Follow the instructions for your Z-Wave certified Controller to enter inclusion mode. When prompted by the Controller:</p> <ol><li>For proper inclusion, bring the Siren to within 10 feet of your Controller. After inclusion, the device can be moved to any desired location.</li> <li>Remove the Back Plate of the Siren.</li> <li>Remove the Battery Tabs.</li> <li>Press the Connect Button quickly 3 times in a row. The LED Ring will flash five times indicating inclusion.</li> </ol><br /><h2>Exclusion Information</h2><p>Follow the instructions for your Z-Wave certified Controller to enter exclusion mode. When prompted by the Controller:</p> <ol><li>Remove the Back Plate of the Siren.</li> <li>Press the Connect Button quickly 3 times in a row. The LED Ring will flash five times indicating exclusion/disconnection.</li> </ol><br /><h2>Wakeup Information</h2><p>The device can be forced to wake up to submit these reports or accept new settings immediately by simply pressing and holding the CONNECT BUTTON for two seconds. The LED RING will flash once indicating successful wake up.</p>
1212
]]></description>
1313
<category>Siren</category>
1414

@@ -26,6 +26,42 @@ Dome Wireless Siren<br /><h1>Overview</h1><p>Alert you with sounds and built-in
2626
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=7</property>
2727
</properties>
2828
</channel>
29+
<channel id="config_decimal_param1" typeId="elexa_dms01_00_000_config_decimal_param1">
30+
<label>Primary Notification Volume</label>
31+
<properties>
32+
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=1</property>
33+
</properties>
34+
</channel>
35+
<channel id="config_decimal_param4" typeId="elexa_dms01_00_000_config_decimal_param4">
36+
<label>Secondary Notification Volume</label>
37+
<properties>
38+
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=4</property>
39+
</properties>
40+
</channel>
41+
<channel id="config_decimal_param5" typeId="elexa_dms01_00_000_config_decimal_param5">
42+
<label>Primary Notification Sound</label>
43+
<properties>
44+
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=5</property>
45+
</properties>
46+
</channel>
47+
<channel id="config_decimal_param6" typeId="elexa_dms01_00_000_config_decimal_param6">
48+
<label>Secondary Notification Sound</label>
49+
<properties>
50+
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=6</property>
51+
</properties>
52+
</channel>
53+
<channel id="config_decimal_param2" typeId="elexa_dms01_00_000_config_decimal_param2">
54+
<label>Primary Notification Length</label>
55+
<properties>
56+
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=2</property>
57+
</properties>
58+
</channel>
59+
<channel id="config_decimal_param3" typeId="elexa_dms01_00_000_config_decimal_param3">
60+
<label>Secondary Notification Length</label>
61+
<properties>
62+
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=3</property>
63+
</properties>
64+
</channel>
2965
<channel id="alarm_general" typeId="alarm_general">
3066
<label>Alarm</label>
3167
<properties>
@@ -191,4 +227,93 @@ Set the siren primary notification sound.<br /><h1>Overview</h1><p>The siren off
191227
</state>
192228
</channel-type>
193229

230+
<channel-type id="elexa_dms01_00_000_config_decimal_param1">
231+
<item-type>Number</item-type>
232+
<label>Primary Notification Volume Level</label>
233+
<state pattern="%s">
234+
<options>
235+
<option value="1">Low Volume</option>
236+
<option value="2">Medium Volume</option>
237+
<option value="3">High Volume</option>
238+
</options>
239+
</state>
240+
</channel-type>
241+
242+
<channel-type id="elexa_dms01_00_000_config_decimal_param4">
243+
<item-type>Number</item-type>
244+
<label>Secondary Notification Volume Level</label>
245+
<state pattern="%s">
246+
<options>
247+
<option value="1">Low Volume</option>
248+
<option value="2">Medium Volume</option>
249+
<option value="3">High Volume</option>
250+
</options>
251+
</state>
252+
</channel-type>
253+
254+
<channel-type id="elexa_dms01_00_000_config_decimal_param5">
255+
<item-type>Number</item-type>
256+
<label>Primary Notification Sound</label>
257+
<description>Set the siren primary notification sound.</description>
258+
<state pattern="%s">
259+
<options>
260+
<option value="1">Ding dong</option>
261+
<option value="2">Fur Elise</option>
262+
<option value="3">Westminster Chime</option>
263+
<option value="4">Dingdongdingdongdingdong</option>
264+
<option value="5">William Tell Overture</option>
265+
<option value="6">Classical</option>
266+
<option value="7">Weeooeeooeeooeeoo</option>
267+
<option value="8">Err-err-err-err-err</option>
268+
<option value="9">Beepbeepbeepbeep (Default)</option>
269+
<option value="10">beeeep-beeeep-beeeep</option>
270+
</options>
271+
</state>
272+
</channel-type>
273+
274+
<channel-type id="elexa_dms01_00_000_config_decimal_param6">
275+
<item-type>Number</item-type>
276+
<label>Secondary Notification Sound</label>
277+
<state pattern="%s">
278+
<options>
279+
<option value="1">Ding dong</option>
280+
<option value="2">Fur Elise</option>
281+
<option value="3">Westminster Chime</option>
282+
<option value="4">Dingdongdingdongdingdong</option>
283+
<option value="5">William Tell Overture</option>
284+
<option value="6">Classical</option>
285+
<option value="7">Weeooeeooeeooeeoo</option>
286+
<option value="8">Err-err-err-err-err</option>
287+
<option value="9">Beepbeepbeepbeep (Default)</option>
288+
<option value="10">beeeep-beeeep-beeeep</option>
289+
</options>
290+
</state>
291+
</channel-type>
292+
293+
<channel-type id="elexa_dms01_00_000_config_decimal_param2">
294+
<item-type>Number</item-type>
295+
<label>Primary Notification Length</label>
296+
<state pattern="%s">
297+
<options>
298+
<option value="1">30 Seconds</option>
299+
<option value="2">1 Minute</option>
300+
<option value="3">5 Minutes</option>
301+
<option value="255">Plays Until Battery Is Depleted</option>
302+
</options>
303+
</state>
304+
</channel-type>
305+
306+
<channel-type id="elexa_dms01_00_000_config_decimal_param3">
307+
<item-type>Number</item-type>
308+
<label>Secondary Notification Length</label>
309+
<state pattern="%s">
310+
<options>
311+
<option value="0">Does Not Stop</option>
312+
<option value="1">One Minute</option>
313+
<option value="5">Five Minutes</option>
314+
<option value="255">Chime Will Not Play</option>
315+
</options>
316+
</state>
317+
</channel-type>
318+
194319
</thing:thing-descriptions>

ESH-INF/thing/fakro/arz2013_2_1.xml

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@ Roller Shutter<br /><h1>Overview</h1><p>This represents the <strong>2013 revisio
2020
<property name="binding:*:OnOffType">COMMAND_CLASS_SWITCH_BINARY</property>
2121
</properties>
2222
</channel>
23-
<channel id="switch_dimmer" typeId="switch_dimmer">
23+
<channel id="blinds_control" typeId="blinds_control">
2424
<label>Dimmer</label>
2525
<properties>
2626
<property name="binding:*:PercentType">COMMAND_CLASS_SWITCH_MULTILEVEL,COMMAND_CLASS_BASIC</property>
27-
<property name="binding:Command:OnOffType">COMMAND_CLASS_SWITCH_MULTILEVEL,COMMAND_CLASS_BASIC</property>
27+
<property name="binding:Command:StopMoveType">COMMAND_CLASS_SWITCH_MULTILEVEL,COMMAND_CLASS_BASIC</property>
28+
<property name="binding:Command:UpDownType">COMMAND_CLASS_SWITCH_MULTILEVEL,COMMAND_CLASS_BASIC</property>
2829
</properties>
2930
</channel>
3031
</channels>

0 commit comments

Comments
 (0)