Updated external content (Jenkins build 803)
parent
9621cf2117
commit
cb9a16848f
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,144 @@
|
|||
---
|
||||
id: flicbutton
|
||||
label: Flic Button
|
||||
title: Flic Button - Bindings
|
||||
type: binding
|
||||
description: "openHAB binding for using [Flic Buttons](https://flic.io/)"
|
||||
since: 3x
|
||||
install: manual
|
||||
---
|
||||
|
||||
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# Flic Button Binding
|
||||
|
||||
openHAB binding for using [Flic Buttons](https://flic.io/)
|
||||
with a [fliclib-linux-hci](https://github.com/50ButtonsEach/fliclib-linux-hci) bridge.
|
||||
|
||||
Currently, although Flic Buttons are BLE devices, this binding only supports fliclib-linux-hci (flicd) as a bridge.
|
||||
The openHAB Bluetooth Bindings are not supported.
|
||||
Flicd requires a seperate Bluetooth adapter to work, so if you use this binding together with e.g. the
|
||||
[Bluez Binding](https://www.openhab.org/addons/bindings/bluetooth.bluez/),
|
||||
two physical Bluetooth adapters are required (one for Bluez and one for flicd).
|
||||
Be aware that flicd requires an initial internet connection for the verification of the buttons.
|
||||
After buttons are initially added to flicd, an internet connection is not required anymore.
|
||||
|
||||
## Supported Things
|
||||
|
||||
| Thing Type ID | Description |
|
||||
| --------------- | ------------------------- |
|
||||
| flicd-bridge | The bridge representing a running instance of [fliclib-linux-hci (flicd)](https://github.com/50ButtonsEach/fliclib-linux-hci) on the server. |
|
||||
| button | The Flic button (supports Flic 1 buttons as well as Flic 2 buttons) |
|
||||
|
||||
## Discovery
|
||||
|
||||
* There is no automatic discovery for flicd-bridge available.
|
||||
* After flicd-bridge is (manually) configured, buttons will be automatically discovered via background discovery as soon
|
||||
as they're added with [simpleclient](https://github.com/50ButtonsEach/fliclib-linux-hci).
|
||||
|
||||
If they're already attached to the flicd-bridge before configuring this binding, they can be discovered by triggering an
|
||||
active scan.
|
||||
|
||||
## Thing Configuration
|
||||
|
||||
### flicd-bridge
|
||||
|
||||
Example for textual configuration:
|
||||
|
||||
```
|
||||
Bridge flicbutton:flicd-bridge:mybridge
|
||||
```
|
||||
|
||||
The default host is localhost:5551 (this should be sufficient if flicd is running with default settings on the same server as openHAB).
|
||||
If your flicd service is running somewhere else, specify it like this:
|
||||
|
||||
```
|
||||
Bridge flicbutton:flicd-bridge:mybridge [ hostname="<YOUR_HOSTNAME>", port=<YOUR_PORT>]
|
||||
```
|
||||
|
||||
If flicd is running on a remote host, please do not forget to start it with the parameter `-s <openHAB IP>`, otherwise it won't be accessible for openHAB (more details on [fliclib-linux-hci](https://github.com/50ButtonsEach/fliclib-linux-hci)).
|
||||
|
||||
### button
|
||||
|
||||
For the button, the only config parameter is the MAC address.
|
||||
Normally, no textual configuration is necessary as buttons are auto discovered as soon as the bridge is configured.
|
||||
If you want to use textual configuration anyway, you can do it like this:
|
||||
|
||||
```
|
||||
Bridge flicbutton:flicd-bridge:mybridge [ hostname="<YOUR_HOSTNAME>", port=<YOUR_PORT>] {
|
||||
Thing button myflic1 "<YOUR_LABEL>" [address ="<MAC_ADDRESS>"]
|
||||
Thing button myflic2 "<YOUR_LABEL>" [address ="<MAC_ADDRESS>"]
|
||||
...
|
||||
}
|
||||
```
|
||||
|
||||
You can lookup the MAC addresses of your buttons within the inbox of the UI.
|
||||
You're free to choose any label you like for your button.
|
||||
|
||||
## Channels
|
||||
|
||||
| Channel ID | Channel Type | Item Type | Description |
|
||||
| ------------------------- | ------------------------ | --------------------------| ------------------------------ |
|
||||
| rawbutton | [System Trigger Channel](https://www.openhab.org/docs/developer/bindings/thing-xml.html#system-trigger-channel-types) `system.rawbutton` | Depends on the [Trigger Profile](https://www.openhab.org/docs/configuration/items.html#profiles) used | Raw Button channel that triggers `PRESSED` and `RELEASED` events, allows to use openHAB profiles or own implementations via rules to detect e.g. double clicks, long presses etc. |
|
||||
| button | [System Trigger Channel](https://www.openhab.org/docs/developer/bindings/thing-xml.html#system-trigger-channel-types) `system.button` | Depends on the [Trigger Profile](https://www.openhab.org/docs/configuration/items.html#profiles) used | Button channel that is using Flic's implementation for detecting long, short or double clicks. Triggers `SHORT_PRESSED`,`DOUBLE_PRESSED` and `LONG_PRESSED` events. |
|
||||
| battery-level | [System State Channel](https://www.openhab.org/docs/developer/bindings/thing-xml.html#system-state-channel-types) `system.battery-level` | Number | Represents the battery level as a percentage (0-100%).
|
||||
## Example
|
||||
|
||||
### Initial setup
|
||||
|
||||
1. Setup and run flicd as described in [fliclib-linux-hci](https://github.com/50ButtonsEach/fliclib-linux-hci).
|
||||
Please consider that you need a separate Bluetooth adapter. Shared usage with other Bluetooth services (e.g. Bluez)
|
||||
is not possible.
|
||||
1. Connect your buttons to flicd using the simpleclient as described in
|
||||
[fliclib-linux-hci](https://github.com/50ButtonsEach/fliclib-linux-hci). Flicd has to run in background the whole
|
||||
time, simpleclient can be killed after you successfully test the button connects.
|
||||
1. Add a flicd-bridge via the UI or textual configuration. Please consider that flicd only accepts connections from
|
||||
localhost by default, to enable remote connections from openHAB you have to use the `--server-addr` parameter as
|
||||
described in [fliclib-linux-hci](https://github.com/50ButtonsEach/fliclib-linux-hci).
|
||||
1. When the bridge is online, buttons newly added via simpleclient will automatically get discovered via background
|
||||
discovery. To discover buttons that were set up before the binding was setup, please run an active scan.
|
||||
|
||||
### Configuration Example using Profiles
|
||||
|
||||
[Profiles](https://www.openhab.org/docs/configuration/items.html#profiles) are the recommended way to use this binding.
|
||||
|
||||
demo.things:
|
||||
|
||||
```
|
||||
Bridge flicbutton:flicd-bridge:local-flicd {
|
||||
Thing button flic_livingroom "Yellow Button Living Room" [address = "60:13:B3:02:18:BD"]
|
||||
Thing button flic_kitchen "Black Button Kitchen" [address = "B5:7E:59:78:86:9F"]
|
||||
}
|
||||
```
|
||||
|
||||
demo.items:
|
||||
|
||||
```
|
||||
Dimmer Light_LivingRoom { channel="milight:rgbLed:milight2:4:ledbrightness", channel="flicbutton:button:local-flicd:flic_livingroom:rawbutton" [profile="rawbutton-toggle-switch"], channel="flicbutton:button:local-flicd:flic_kitchen:rawbutton" [profile="rawbutton-toggle-switch"] } // We have a combined kitchen / livingroom, so we control the living room lights with switches from the living room and from the kitchen
|
||||
Switch Light_Kitchen { channel="hue:group:1:kitchen-bulbs:switch", channel="flicbutton:button:local-flicd:flic_kitchen:rawbutton" [profile="rawbutton-toggle-switch"] }
|
||||
```
|
||||
|
||||
### Configuration Example using Rules
|
||||
|
||||
It's also possible to setup [Rules](https://www.openhab.org/docs/configuration/rules-dsl.html).
|
||||
The following rules help to initially test your setup as they'll trigger log messages on incoming events.
|
||||
|
||||
```
|
||||
rule "Button rule using the button channel"
|
||||
|
||||
when
|
||||
Channel "flicbutton:button:local-flicd:flic_livingroom:button" triggered SHORT_PRESSED
|
||||
then
|
||||
logInfo("Flic", "Flic 'short pressed' triggered")
|
||||
end
|
||||
|
||||
rule "Button rule directly using the rawbutton channel"
|
||||
|
||||
when
|
||||
Channel "flicbutton:button:local-flicd:flic_livingroom:rawbutton" triggered
|
||||
then
|
||||
logInfo("Flic", "Flic pressed: " + receivedEvent.event)
|
||||
end
|
||||
```
|
|
@ -0,0 +1,320 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: PLBW10100 - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# PLBW10100 Nexello Motion Detector
|
||||
This describes the Z-Wave device *PLBW10100*, manufactured by *ABUS Security-Center GmbH & Co. KG * with the thing type UID of ```abus_plbw10100_00_000```.
|
||||
|
||||
The device is in the category of *Motion Detector*, defining Motion sensors/detectors.
|
||||
|
||||

|
||||
|
||||
|
||||
The PLBW10100 supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is unable to participate in the routing of data from other devices.
|
||||
|
||||
The PLBW10100 does not permanently listen for messages sent from the controller - it will periodically wake up automatically to check if the controller has messages to send, but will sleep most of the time to conserve battery life. Refer to the *Wakeup Information* section below for further information.
|
||||
|
||||
## Overview
|
||||
|
||||
Battery powered Motion detector (PIR) with integrated illuminance sensor (separate day/night report) and tamper protection.
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Within 1.5 seconds, press 3 times on the link-button.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
Within 1.5 seconds, press 3 times on the link-button.
|
||||
|
||||
### Wakeup Information
|
||||
|
||||
The PLBW10100 does not permanently listen for messages sent from the controller - it will periodically wake up automatically to check if the controller has messages to send, but will sleep most of the time to conserve battery life. The wakeup period can be configured in the user interface - it is advisable not to make this too short as it will impact battery life - a reasonable compromise is 1 hour.
|
||||
|
||||
The wakeup period does not impact the devices ability to report events or sensor data. The device can be manually woken with a button press on the device as described below - note that triggering a device to send an event is not the same as a wakeup notification, and this will not allow the controller to communicate with the device.
|
||||
|
||||
|
||||
|
||||
|
||||
### General Usage Information
|
||||
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the PLBW10100 -:
|
||||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Sensor (luminance) | sensor_luminance | sensor_luminance | | Number |
|
||||
| Alarm (burglar) | alarm_burglar | alarm_burglar | Door | Switch |
|
||||
| Alarm (power) | alarm_power | alarm_power | Energy | Switch |
|
||||
|
||||
### Sensor (luminance)
|
||||
Indicates the current light reading.
|
||||
|
||||
The ```sensor_luminance``` channel is of type ```sensor_luminance``` and supports the ```Number``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
### Alarm (burglar)
|
||||
Indicates if the burglar alarm is triggered.
|
||||
|
||||
The ```alarm_burglar``` channel is of type ```alarm_burglar``` and supports the ```Switch``` item and is in the ```Door``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Alarm (power)
|
||||
Indicates if a power alarm is triggered.
|
||||
|
||||
The ```alarm_power``` channel is of type ```alarm_power``` and supports the ```Switch``` item and is in the ```Energy``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
|
||||
|
||||
## Device Configuration
|
||||
|
||||
The following table provides a summary of the 9 configuration parameters available in the PLBW10100.
|
||||
Detailed information on each parameter can be found in the sections below.
|
||||
|
||||
| Param | Name | Description |
|
||||
|-------|-------|-------------|
|
||||
| 10 | Battery Alarm Threshold | Threshold value for battery alarm. |
|
||||
| 12 | Sensor Activation | Enables or disables the sensor. |
|
||||
| 13 | Waiting Time | Waiting time between two motion alarms. |
|
||||
| 14 | BASIC SET (Association Group 2) | BASIC SET to association group 2 (motion alarm). |
|
||||
| 15 | Invert BASIC SET | Invert value of BASIC SET command. |
|
||||
| 16 | Sensor Sensitivity | Sensitivity PIR sensor. |
|
||||
| 17 | Pet Immunity | Pet Immunity Active / Deactive. |
|
||||
| 18 | Light Values | Light values after movement alarm. |
|
||||
| 19 | Light Alarm Threshold | Threshold value for light alarm report. |
|
||||
|
||||
### Parameter 10: Battery Alarm Threshold
|
||||
|
||||
Threshold value for battery alarm.
|
||||
Percentage value from when the low battery alarm should be transmitted.
|
||||
|
||||
• Adjustable from **5 - 50** in percent
|
||||
|
||||
(Hexadecimal: 0x05 - 0x32)
|
||||
Values in the range 5 to 50 may be set.
|
||||
|
||||
The manufacturer defined default value is ```10```.
|
||||
|
||||
This parameter has the configuration ID ```config_10_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 12: Sensor Activation
|
||||
|
||||
Enables or disables the sensor.
|
||||
Enable / Disable the PIR sensor.
|
||||
|
||||
• 0 = Sensor is deactivated
|
||||
|
||||
• 1 = Sensor is activated
|
||||
|
||||
(Hexadecimal: 0x00 - 0x01)
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Sensor is deactivated |
|
||||
| 1 | Sensor is activated |
|
||||
|
||||
The manufacturer defined default value is ```1``` (Sensor is activated).
|
||||
|
||||
This parameter has the configuration ID ```config_12_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 13: Waiting Time
|
||||
|
||||
Waiting time between two motion alarms.
|
||||
Waiting time from one motion alarm to the next triggering.
|
||||
|
||||
• Adjustable from **5 - 15300** in seconds
|
||||
|
||||
(Hexadecimal: 0x05 - 0x3BC4)
|
||||
Values in the range 5 to 15300 may be set.
|
||||
|
||||
The manufacturer defined default value is ```60```.
|
||||
|
||||
This parameter has the configuration ID ```config_13_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 14: BASIC SET (Association Group 2)
|
||||
|
||||
BASIC SET to association group 2 (motion alarm).
|
||||
BASIC SET should be sent after a motion alarm.
|
||||
|
||||
• 0 = Disabled
|
||||
|
||||
• 1 = Enabled
|
||||
|
||||
(Hexadecimal: 0x00 - 0x01)
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Disabled |
|
||||
| 1 | Enabled |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Disabled).
|
||||
|
||||
This parameter has the configuration ID ```config_14_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 15: Invert BASIC SET
|
||||
|
||||
Invert value of BASIC SET command.
|
||||
Set the value of the BASIC SET command for movement alarm and acknowledgement.
|
||||
|
||||
• 0 = The motion alarm sends the BASIC SET value "On" (0xFF), the acknowledgement sends the BASIC SET value "Off" (0x00)
|
||||
|
||||
• 1 = The motion alarm sends the BASIC SET value "Off" (0x00), the acknowledgement sends the BASIC SET value "On" (0xFF)
|
||||
|
||||
(Hexadecimal: 0x00 - 0x01)
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Disabled |
|
||||
| 1 | Enabled |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Disabled).
|
||||
|
||||
This parameter has the configuration ID ```config_15_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 16: Sensor Sensitivity
|
||||
|
||||
Sensitivity PIR sensor.
|
||||
Sensitivity value of the PIR sensor. The value 10 is the highest sensitivity. The value 1 is the lowest sensitivity.
|
||||
|
||||
• Adjustable from **1 - 10**
|
||||
|
||||
(Hexadecimal: 0x00 - 0x0A)
|
||||
Values in the range 1 to 10 may be set.
|
||||
|
||||
The manufacturer defined default value is ```9```.
|
||||
|
||||
This parameter has the configuration ID ```config_16_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 17: Pet Immunity
|
||||
|
||||
Pet Immunity Active / Deactive.
|
||||
Activate/deactivate the pet immunity.
|
||||
|
||||
|
||||
• 0 = Pet immunity is deactivated
|
||||
|
||||
• 1 = Pet immunity is activated
|
||||
|
||||
(Hexadecimal: 0x00 - 0x01)
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Deactivated |
|
||||
| 1 | Activated |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Deactivated).
|
||||
|
||||
This parameter has the configuration ID ```config_17_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 18: Light Values
|
||||
|
||||
Light values after movement alarm.
|
||||
Defines which additional reports are to be sent in the event of a movement alarm.
|
||||
|
||||
• 1 = Sensor multilevel report (LUX)
|
||||
|
||||
• 2 = Light alarm report is sent
|
||||
|
||||
• 3 = Lux and light alarm report is sent
|
||||
|
||||
(Hexadecimal: 0x00 - 0x03)
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 1 | Sensor multilevel report |
|
||||
| 2 | Light alarm report is sent |
|
||||
| 3 | Lux and light alarm report is sent |
|
||||
|
||||
The manufacturer defined default value is ```3``` (Lux and light alarm report is sent).
|
||||
|
||||
This parameter has the configuration ID ```config_18_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 19: Light Alarm Threshold
|
||||
|
||||
Threshold value for light alarm report.
|
||||
Threshold value from which LUX value the light alarm (day) is sent.
|
||||
|
||||
• Adjustable from **0 - 500** in lux
|
||||
Values in the range 0 to 500 may be set.
|
||||
|
||||
The manufacturer defined default value is ```50```.
|
||||
|
||||
This parameter has the configuration ID ```config_19_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
## Association Groups
|
||||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The PLBW10100 supports 2 association groups.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
The Lifeline association group reports device status to a hub and is not designed to control other devices directly. When using the Lineline group with a hub, in most cases, only the lifeline group will need to be configured and normally the hub will perform this automatically during the device initialisation.
|
||||
Notification Report; Battery Report; Device Reset Locally Notification; Sensor Multilevel Report
|
||||
The Lifeline Association is automatically established between the Z-Wave controller and the device during inclusion and defines what information is exchanged between the Z-Wave controller and the device.
|
||||
|
||||
Association group 1 supports 5 nodes.
|
||||
|
||||
### Group 2: On/Off Control
|
||||
|
||||
Basic Set;
|
||||
When the motion alarm is triggered, it sends a BASIC SET On / Off command to the nodes of group 2
|
||||
|
||||
Association group 2 supports 5 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
||||
### Endpoints
|
||||
|
||||
#### Endpoint 0
|
||||
|
||||
| Command Class | Comment |
|
||||
|---------------|---------|
|
||||
| COMMAND_CLASS_NO_OPERATION_V1| |
|
||||
| COMMAND_CLASS_SENSOR_MULTILEVEL_V5| |
|
||||
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
|
||||
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
|
||||
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
|
||||
| COMMAND_CLASS_CONFIGURATION_V1| |
|
||||
| COMMAND_CLASS_ALARM_V8| |
|
||||
|
||||
### Documentation Links
|
||||
|
||||
* [ABUS Nexello Motion Switch Manual](https://opensmarthouse.org/zwavedatabase/1472/reference/20201013_BDA_PLBW10000_DE_EN.pdf)
|
||||
* [ABUS Nexello Motion Switch Manual](https://opensmarthouse.org/zwavedatabase/1472/reference/R100833263-Gebrauchsanleitung-PDF.pdf)
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can [contribute to the database here](https://opensmarthouse.org/zwavedatabase/1472).
|
|
@ -56,6 +56,10 @@ In order to send your WallMote Quad new configuration commands from your Z-Wave
|
|||
|
||||
Remove your WallMote Quad unit from its Back Mounting Plate, press and hold the Action Button for 3 seconds(the buzzer chirp once and the orange LED will be ON) on the back of the WallMote Quad unit and then release it. This will trigger and send a wake up notification command to your controller/gateway, then your WallMote Quad will wake up for 10 minutes and the orange LED will fast blink while it is awake (if the WallMote Quad does not receive the Wake Up No More Info from the primary Controller).
|
||||
|
||||
### General Usage Information
|
||||
|
||||
You need to add the Controller to the association groups for Basic and Multilevel for each button in order to get on/off and increase/decrease notifications on the appropriate channel.
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the ZW130 -:
|
||||
|
@ -65,12 +69,16 @@ The following table summarises the channels available for the ZW130 -:
|
|||
| Scene Number | scene_number | scene_number | | Number |
|
||||
| Alarm (power) | alarm_power | alarm_power | Energy | Switch |
|
||||
| Battery Level | battery-level | system.battery_level | Battery | Number |
|
||||
| Button Number 1 | switch_binary1 | switch_binary | Switch | Switch |
|
||||
| Swipe Switch 1 | switch_startstop1 | switch_startstop | Switch | String |
|
||||
| Scene Number 1 | scene_number1 | scene_number | | Number |
|
||||
| Button Number 2 | switch_binary2 | switch_binary | Switch | Switch |
|
||||
| Swipe Switch 2 | switch_startstop2 | switch_startstop | Switch | String |
|
||||
| Scene Number 2 | scene_number2 | scene_number | | Number |
|
||||
| Button Number 3 | switch_binary3 | switch_binary | Switch | Switch |
|
||||
| Swipe Switch 3 | switch_startstop3 | switch_startstop | Switch | String |
|
||||
| Scene Number 3 | scene_number3 | scene_number | | Number |
|
||||
| Button Number 4 | switch_binary4 | switch_binary | Switch | Switch |
|
||||
| Swipe Switch 4 | switch_startstop4 | switch_startstop | Switch | String |
|
||||
| Scene Number 4 | scene_number4 | scene_number | | Number |
|
||||
|
||||
|
@ -107,6 +115,11 @@ Represents the battery level as a percentage (0-100%). Bindings for things suppo
|
|||
|
||||
The ```system.battery-level``` channel is of type ```system.battery-level``` and supports the ```Number``` item and is in the ```Battery``` category.
|
||||
This channel provides the battery level as a percentage and also reflects the low battery warning state. If the battery state is in low battery warning state, this will read 0%.
|
||||
### Button Number 1
|
||||
Switch the power on and off.
|
||||
|
||||
The ```switch_binary1``` channel is of type ```switch_binary``` and supports the ```Switch``` item and is in the ```Switch``` category.
|
||||
|
||||
### Swipe Switch 1
|
||||
Switch indicating direction.
|
||||
|
||||
|
@ -128,6 +141,11 @@ This channel provides the scene, and the event as a decimal value in the form ``
|
|||
| 5 | 4 x keypress |
|
||||
| 6 | 5 x keypress |
|
||||
|
||||
### Button Number 2
|
||||
Switch the power on and off.
|
||||
|
||||
The ```switch_binary2``` channel is of type ```switch_binary``` and supports the ```Switch``` item and is in the ```Switch``` category.
|
||||
|
||||
### Swipe Switch 2
|
||||
Switch indicating direction.
|
||||
|
||||
|
@ -149,6 +167,11 @@ This channel provides the scene, and the event as a decimal value in the form ``
|
|||
| 5 | 4 x keypress |
|
||||
| 6 | 5 x keypress |
|
||||
|
||||
### Button Number 3
|
||||
Switch the power on and off.
|
||||
|
||||
The ```switch_binary3``` channel is of type ```switch_binary``` and supports the ```Switch``` item and is in the ```Switch``` category.
|
||||
|
||||
### Swipe Switch 3
|
||||
Switch indicating direction.
|
||||
|
||||
|
@ -170,6 +193,11 @@ This channel provides the scene, and the event as a decimal value in the form ``
|
|||
| 5 | 4 x keypress |
|
||||
| 6 | 5 x keypress |
|
||||
|
||||
### Button Number 4
|
||||
Switch the power on and off.
|
||||
|
||||
The ```switch_binary4``` channel is of type ```switch_binary``` and supports the ```Switch``` item and is in the ```Switch``` category.
|
||||
|
||||
### Swipe Switch 4
|
||||
Switch indicating direction.
|
||||
|
||||
|
|
|
@ -669,7 +669,7 @@ Value Range (US) : 400~21200
|
|||
Default value (EU/AU) : 280
|
||||
|
||||
Default value (US) : 824
|
||||
Values in the range 400 to 2120 may be set.
|
||||
Values in the range -400 to 2120 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
|
@ -693,7 +693,7 @@ Default Value (EU/AU) : 0
|
|||
|
||||
|
||||
Default Value (US) : 320
|
||||
Values in the range 400 to 2120 may be set.
|
||||
Values in the range -400 to 2120 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
|
|
|
@ -149,7 +149,7 @@ Detailed information on each parameter can be found in the sections below.
|
|||
|
||||
LCD Invert
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -167,7 +167,7 @@ LCD Timeout
|
|||
0: No Timeout LCD always on
|
||||
|
||||
5-30: LCD will turn off after 5 to 30 seconds
|
||||
The following option values may be configured, in addition to values in the range 5 to 30 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -182,7 +182,7 @@ This parameter has the configuration ID ```config_2_1``` and is of type ```INTEG
|
|||
|
||||
Backlight
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -198,7 +198,7 @@ This parameter has the configuration ID ```config_3_1``` and is of type ```INTEG
|
|||
|
||||
Battery report
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -242,7 +242,7 @@ This parameter has the configuration ID ```config_6_1``` and is of type ```INTEG
|
|||
|
||||
Window open detection
|
||||
|
||||
The following option values may be configured -:
|
||||
The following option values may be configured, in addition to values in the range 0 to 3 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -262,7 +262,7 @@ Measured temperature offset
|
|||
-50 ... +50: Offsets the measured temp by -5,0°C ... +5,0°C
|
||||
|
||||
128: External temp sensor will be used for regulation.
|
||||
The following option values may be configured, in addition to values in the range -50 to 50 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -8,7 +8,7 @@ title: ZWA012 - ZWave
|
|||
# ZWA012 Door/Window Sensor 7 Pro
|
||||
This describes the Z-Wave device *ZWA012*, manufactured by *Aeotec Limited* with the thing type UID of ```aeotec_zwa012_00_000```.
|
||||
|
||||
The device is in the category of *Battery*, defining Batteries, Energy Storages.
|
||||
The device is in the category of *Sensor*, defining Device used to measure something.
|
||||
|
||||

|
||||
|
||||
|
|
|
@ -41,6 +41,10 @@ The wakeup period does not impact the devices ability to report events or sensor
|
|||
|
||||
Press the B-button once
|
||||
|
||||
### General Usage Information
|
||||
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the FGMS001 -:
|
||||
|
|
|
@ -167,17 +167,27 @@ Detailed information on each parameter can be found in the sections below.
|
|||
### Parameter 1: Timeout Duration
|
||||
|
||||
Amount of time the light stays on after motion stops
|
||||
0=Test(5S)
|
||||
|
||||
The following option values may be configured -:
|
||||
1=1 minute
|
||||
|
||||
5=5 minutes
|
||||
|
||||
15=15 minutes
|
||||
|
||||
30=30 minutes
|
||||
|
||||
-1=Disable timeout
|
||||
The following option values may be configured, in addition to values in the range 0 to 30 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| -1 | Disable timeout |
|
||||
| 0 | Test (5s) |
|
||||
| 1 | 1 minute |
|
||||
| 5 | 5 minutes |
|
||||
| 15 | 15 minutes |
|
||||
| 30 | 30 minutes |
|
||||
| 255 | Disable timeout |
|
||||
|
||||
The manufacturer defined default value is ```5``` ( 5 minutes).
|
||||
|
||||
|
|
|
@ -0,0 +1,241 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: Inteset Door Sensor - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# Inteset Door Sensor Door Sensor
|
||||
This describes the Z-Wave device *Inteset Door Sensor*, manufactured by *[Inteset Technologies,](https://intesettech.com/)* with the thing type UID of ```inteset_MC-V12.4_00_000```.
|
||||
|
||||
The device is in the category of *Battery*, defining Batteries, Energy Storages.
|
||||
|
||||

|
||||
|
||||
|
||||
The Inteset Door Sensor supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is unable to participate in the routing of data from other devices.
|
||||
|
||||
The Inteset Door Sensor does not permanently listen for messages sent from the controller - it will periodically wake up automatically to check if the controller has messages to send, but will sleep most of the time to conserve battery life. Refer to the *Wakeup Information* section below for further information.
|
||||
|
||||
## Overview
|
||||
|
||||
The NEO Coolcam Door/Window Sensor provides information whether a door or window is opened or closed.
|
||||
The battery operated sensor consits of the main unit and a magnetic element. The main unit should be installed on the frame and the magnetic element is placed on the door or window.
|
||||
|
||||
Technical parameters:
|
||||
|
||||
* Power: CR14250 x1
|
||||
* Standby current: 1uA
|
||||
* Battery life: 10 years
|
||||
* Radio Protocol: Z-wave
|
||||
* Radio Frequency: 868.4MHz EU; 908.4MHz US; 921.4MHz ANZ; 869.2MHz RU
|
||||
* Wireless distance:50m
|
||||
* Operation temperature: 0-40℃
|
||||
* Storage temperature: 0-60℃
|
||||
* Size: Contact sensor main body (L x W x H): 70mmx20mmx20mm Contact sensor deputy body (L x W x H): 40mmx11mmx11mm
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
1. Remove the sensor cover.
|
||||
2. Make sure the sensor is powered.
|
||||
3. Set Z‐Wave controller or Z‐Wave gateway into inclusion mode (Refer to the controller or gateway operating manual)
|
||||
4. Press the button three times within 1.5 second, the device will enter inclusion mode. And the LED will flash on and off alternately five times.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
1. Remove the sensor cover.
|
||||
2. Make sure the sensor is powered.
|
||||
3. Set Z‐Wave controller or Z‐Wave gateway into inclusion mode (Refer to the controller or gateway operating manual)
|
||||
4. Press the button three times within 1.5 second, the device will enter inclusion mode. And the LED will flash on and off alternately five times.
|
||||
|
||||
### Wakeup Information
|
||||
|
||||
The Inteset Door Sensor does not permanently listen for messages sent from the controller - it will periodically wake up automatically to check if the controller has messages to send, but will sleep most of the time to conserve battery life. The wakeup period can be configured in the user interface - it is advisable not to make this too short as it will impact battery life - a reasonable compromise is 1 hour.
|
||||
|
||||
The wakeup period does not impact the devices ability to report events or sensor data. The device can be manually woken with a button press on the device as described below - note that triggering a device to send an event is not the same as a wakeup notification, and this will not allow the controller to communicate with the device.
|
||||
|
||||
|
||||
Press the button once to wake the device. If pressed successfully, the LED will blink one time.
|
||||
|
||||
* The minimum wakeup interval is 300s (5 minutes)
|
||||
* The maximum wakeup interval is 16,777,200s (about 194 days)
|
||||
* Allowable min step among each wakeup interval is 60 seconds, such as 360s, 420s, 480s…
|
||||
* Note: The default value is 12 hours. This value is longer, the battery life is greater.
|
||||
|
||||
### General Usage Information
|
||||
|
||||
A door sensor
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the Inteset Door Sensor -:
|
||||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Binary Sensor | sensor_binary | sensor_binary | | Switch |
|
||||
| Alarm (access) | alarm_access | alarm_access | Door | Switch |
|
||||
| Battery Level | battery-level | system.battery_level | Battery | Number |
|
||||
|
||||
### Binary Sensor
|
||||
Indicates if a sensor has triggered.
|
||||
|
||||
The ```sensor_binary``` channel is of type ```sensor_binary``` and supports the ```Switch``` item. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| ON | Triggered |
|
||||
| OFF | Untriggered |
|
||||
|
||||
### Alarm (access)
|
||||
Indicates if the access control alarm is triggered.
|
||||
|
||||
The ```alarm_access``` channel is of type ```alarm_access``` and supports the ```Switch``` item and is in the ```Door``` category. This is a read only channel so will only be updated following state changes from the device.
|
||||
|
||||
The following state translation is provided for this channel to the ```Switch``` item type -:
|
||||
|
||||
| Value | Label |
|
||||
|-------|-----------|
|
||||
| OFF | OK |
|
||||
| ON | Alarm |
|
||||
|
||||
### Battery Level
|
||||
Represents the battery level as a percentage (0-100%). Bindings for things supporting battery level in a different format (e.g. 4 levels) should convert to a percentage to provide a consistent battery level reading.
|
||||
|
||||
The ```system.battery-level``` channel is of type ```system.battery-level``` and supports the ```Number``` item and is in the ```Battery``` category.
|
||||
This channel provides the battery level as a percentage and also reflects the low battery warning state. If the battery state is in low battery warning state, this will read 0%.
|
||||
|
||||
|
||||
## Device Configuration
|
||||
|
||||
The following table provides a summary of the 2 configuration parameters available in the Inteset Door Sensor.
|
||||
Detailed information on each parameter can be found in the sections below.
|
||||
|
||||
| Param | Name | Description |
|
||||
|-------|-------|-------------|
|
||||
| 1 | ON/OFF Delay | Delay before the OFF command is transmitted |
|
||||
| 2 | Basic Set Level | Basic Set Command sent when door/window is opened or closed |
|
||||
| | Wakeup Interval | Sets the interval at which the device will accept commands from the controller |
|
||||
| | Wakeup Node | Sets the node ID of the device to receive the wakeup notifications |
|
||||
|
||||
### Parameter 1: ON/OFF Delay
|
||||
|
||||
Delay before the OFF command is transmitted
|
||||
Adjust the delay before the OFF command is transmitted. 0 means send OFF command immediately.
|
||||
Values in the range 0 to 65535 may be set.
|
||||
|
||||
The manufacturer defined default value is ```0```.
|
||||
|
||||
This parameter has the configuration ID ```config_1_2``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 2: Basic Set Level
|
||||
|
||||
Basic Set Command sent when door/window is opened or closed
|
||||
Basic Set Command will be sent when the door/window is opened or closed, the receiver will take it for consideration; for instance, if a lamp module received the BSC of which value is decisive as to how bright of dim level of lamp module shall be.
|
||||
|
||||
Available Settings:
|
||||
|
||||
* 0 - Off, Alarm cancelling or turning a device OFF
|
||||
* 1 - 99 or 255 – ON (Binary Switch Device)
|
||||
* Dim Level (Multilevel Switch Device)
|
||||
Values in the range 0 to 255 may be set.
|
||||
|
||||
The manufacturer defined default value is ```255```.
|
||||
|
||||
This parameter has the configuration ID ```config_2_1``` and is of type ```INTEGER```.
|
||||
|
||||
### Wakeup Interval
|
||||
|
||||
The wakeup interval sets the period at which the device will listen for messages from the controller. This is required for battery devices that sleep most of the time in order to conserve battery life. The device will wake up at this interval and send a message to the controller to tell it that it can accept messages - after a few seconds, it will go back to sleep if there is no further communications.
|
||||
|
||||
This setting is defined in *seconds*. It is advisable not to set this interval too short or it could impact battery life. A period of 1 hour (3600 seconds) is suitable in most instances.
|
||||
|
||||
Note that this setting does not affect the devices ability to send sensor data, or notification events.
|
||||
|
||||
This parameter has the configuration ID ```wakeup_interval``` and is of type ```INTEGER```.
|
||||
|
||||
### Wakeup Node
|
||||
|
||||
When sleeping devices wake up, they send a notification to a listening device. Normally, this device is the network controller, and normally the controller will set this automatically to its own address.
|
||||
In the event that the network contains multiple controllers, it may be necessary to configure this to a node that is not the main controller. This is an advanced setting and should not be changed without a full understanding of the impact.
|
||||
|
||||
This parameter has the configuration ID ```wakeup_node``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
## Association Groups
|
||||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The Inteset Door Sensor supports 4 association groups.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
The Lifeline association group reports device status to a hub and is not designed to control other devices directly. When using the Lineline group with a hub, in most cases, only the lifeline group will need to be configured and normally the hub will perform this automatically during the device initialisation.
|
||||
Is assigned to the device status - OPEN/CLOSED.
|
||||
It enables the sensor to send reports and readings to Z-Wave Controller or Z-Wave Gateway whenever the sensor is triggered.
|
||||
|
||||
* NOTIFICATION_REPORT
|
||||
* BATTERY_REPORT
|
||||
* SENSOR\_BINARY\_REPORT
|
||||
* DEVICE\_RESET\_LOCALLY_NOTIFICATION
|
||||
|
||||
Association group 1 supports 5 nodes.
|
||||
|
||||
### Group 2: Group 2
|
||||
|
||||
Sending control commands to associated devices. This association group is configured through the advanced parameters no. 1 and 2.
|
||||
BASIC_SET
|
||||
|
||||
Association group 2 supports 5 nodes.
|
||||
|
||||
### Group 3: Group 3
|
||||
|
||||
Send Notification to associated devices.
|
||||
NOTIFICATION_REPORT
|
||||
|
||||
Association group 3 supports 5 nodes.
|
||||
|
||||
### Group 4: Group 4
|
||||
|
||||
Send Notification to associated devices.
|
||||
SENSOR\_BINARY\_REPORT
|
||||
|
||||
Association group 4 supports 5 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
||||
### Endpoints
|
||||
|
||||
#### Endpoint 0
|
||||
|
||||
| Command Class | Comment |
|
||||
|---------------|---------|
|
||||
| COMMAND_CLASS_NO_OPERATION_V1| |
|
||||
| COMMAND_CLASS_SENSOR_BINARY_V2| |
|
||||
| COMMAND_CLASS_TRANSPORT_SERVICE_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
|
||||
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
|
||||
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
|
||||
| COMMAND_CLASS_SUPERVISION_V1| |
|
||||
| COMMAND_CLASS_CONFIGURATION_V1| |
|
||||
| COMMAND_CLASS_ALARM_V8| |
|
||||
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
|
||||
| COMMAND_CLASS_POWERLEVEL_V1| |
|
||||
| COMMAND_CLASS_BATTERY_V1| |
|
||||
| COMMAND_CLASS_WAKE_UP_V2| |
|
||||
| COMMAND_CLASS_ASSOCIATION_V2| |
|
||||
| COMMAND_CLASS_VERSION_V2| |
|
||||
| COMMAND_CLASS_MULTI_CHANNEL_ASSOCIATION_V3| |
|
||||
| COMMAND_CLASS_SECURITY_2_V1| |
|
||||
|
||||
### Documentation Links
|
||||
|
||||
* [Manual](https://opensmarthouse.org/zwavedatabase/1471/reference/manual1.pdf)
|
||||
* [Manual](https://opensmarthouse.org/zwavedatabase/1471/reference/manual1_1.pdf)
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can [contribute to the database here](https://opensmarthouse.org/zwavedatabase/1471).
|
|
@ -17,7 +17,8 @@ The MSP-3-1-X1 supports routing. This allows the device to communicate using oth
|
|||
|
||||
## Overview
|
||||
|
||||
The NodOn Micro Smart Plug can be controlled by any kind of Z-Wave® (or Z-Wave Plus®) gateway or other Z-Wave® controller (standalone mode) such as the NodOn® Soft Remote or Octan Remote.
|
||||
The NodOn Micro Smart Plug can be controlled by any kind of Z-Wave® (or Z-Wave Plus®) gateway or other Z-Wave® controller (standalone mode) such as the NodOn® Soft Remote or Octan Remote.
|
||||
|
||||
It existed in both standard, Type E (French) or Schuko (German). Its very small design and volume allow easy integration, without obstructing nearby power holes on a power strip. Furthermore, it can perform Power and Energy Metering.
|
||||
The NodOn Smart Plug is based on brand new 500 series Z-Wave® module from Sigma Designs®, and support all the new features of Z-Wave Plus® standard:
|
||||
Longer range (up to 40m), lower power consumption, higher data rate transmission, and many more new features.
|
||||
|
@ -30,6 +31,10 @@ To include/add to the Z-Wave network, long press during 2 seconds to send severa
|
|||
|
||||
To exclude/remove from the Z-Wave network, long press during 2 seconds to send several NIF during 30 seconds or a triple press to send a single NIF
|
||||
|
||||
### General Usage Information
|
||||
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the MSP-3-1-X1 -:
|
||||
|
@ -241,11 +246,12 @@ This parameter has the configuration ID ```config_23_2``` and is of type ```INTE
|
|||
|
||||
Reporting intervall for power and energy to lifeline.
|
||||
Whatever other metering reports, this parameter will send one power and one energy report to the lifeline every x s (Seconds).
|
||||
The following option values may be configured, in addition to values in the range 0 to 65535 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Metering Pulse disable |
|
||||
| 900 | Enable and send report every 15 minutes |
|
||||
| 3600 | Metering Pulse enable and send report every hour |
|
||||
| 21600 | Enable and send report every 6 hours |
|
||||
| 43200 | Enable and send report every 12 hours |
|
||||
|
|
|
@ -34,6 +34,9 @@ Technical parameters:
|
|||
* Storage temperature: 0-60℃
|
||||
* Size: Contact sensor main body (L x W x H): 70mmx20mmx20mm Contact sensor deputy body (L x W x H): 40mmx11mmx11mm
|
||||
|
||||
Tips: 3x click will wake the device.
|
||||
If device is not reporting, keep the device awake while heal
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
1. Remove the sensor cover.
|
||||
|
|
|
@ -159,17 +159,13 @@ Detailed information on each parameter can be found in the sections below.
|
|||
| 16 | MOTION_DISABLE | Motion Off behaviour ( timeout ) |
|
||||
| 17 | BUTTON_BEHAVIOUR | Toggle button behaviour |
|
||||
| 18 | BUTTON_SCENES | Toggle button Scene 1-4 |
|
||||
| 19 | LEGACY_INACTIVITY_TIME ) | Toggle button inactivity time in "legacy" mode ( timeout ) |
|
||||
| 19 | LEGACY_INACTIVITY_TIME | Toggle button inactivity time in "legacy" mode ( timeout ) |
|
||||
|
||||
### Parameter 1: TIME
|
||||
|
||||
Duration of light after motion detection [s]
|
||||
|
||||
The following option values may be configured, in addition to values in the range 5 to 900 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Duration of light after motion detection [s] |
|
||||
Values in the range 5 to 900 may be set.
|
||||
|
||||
The manufacturer defined default value is ```180```.
|
||||
|
||||
|
@ -182,11 +178,7 @@ Light threshold [lx]
|
|||
Light threshold: 2 - 2000, 0 lx
|
||||
|
||||
0 - run Learn ambient light sequence. 2000 - is used as daylight ( always night mode ).
|
||||
The following option values may be configured, in addition to values in the range 0 to 2000 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Light threshold [lx] |
|
||||
Values in the range 0 to 2000 may be set.
|
||||
|
||||
The manufacturer defined default value is ```2000```.
|
||||
|
||||
|
@ -597,7 +589,7 @@ The manufacturer defined default value is ```1```.
|
|||
This parameter has the configuration ID ```config_18_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 19: LEGACY_INACTIVITY_TIME )
|
||||
### Parameter 19: LEGACY_INACTIVITY_TIME
|
||||
|
||||
Toggle button inactivity time in "legacy" mode ( timeout )
|
||||
In "legacy" button mode function this timeout is used to cancel motion sensor inactivity mode after motion end ( both for on and off state of LED ).
|
||||
|
@ -617,13 +609,7 @@ This parameter has the configuration ID ```config_19_2``` and is of type ```INTE
|
|||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The MotionSwitch LED supports 8 association groups.
|
||||
|
||||
### Group 0: ROOT DEVICE
|
||||
|
||||
Root
|
||||
|
||||
Association group 0 supports 1 node.
|
||||
The MotionSwitch LED supports 7 association groups.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
|
@ -698,7 +684,7 @@ When device already uses remote Ambient light value, then this value is also ret
|
|||
All devices in such a group should have the same LIGHT ( threshold ) settings in order that night mode is detected at the same time.
|
||||
If multichannel association is created the events are send from light sensor endpoint.
|
||||
|
||||
Association group 4 supports 6 nodes.
|
||||
Association group 4 supports 16 nodes.
|
||||
|
||||
### Group 5: Button on/off
|
||||
|
||||
|
|
|
@ -447,13 +447,19 @@ This parameter has the configuration ID ```config_25_1``` and is of type ```INTE
|
|||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The ZEN77 supports 1 association group.
|
||||
The ZEN77 supports 2 association groups.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
The Lifeline association group reports device status to a hub and is not designed to control other devices directly. When using the Lineline group with a hub, in most cases, only the lifeline group will need to be configured and normally the hub will perform this automatically during the device initialisation.
|
||||
|
||||
Association group 1 supports 5 nodes.
|
||||
Association group 1 supports 1 node.
|
||||
|
||||
### Group 2: Status
|
||||
|
||||
Status
|
||||
|
||||
Association group 2 supports 5 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ title: Google Cloud Speech-to-Text - Voices
|
|||
type: voice
|
||||
description: "Google Cloud STT Service uses the non-free Google Cloud Speech-to-Text API to transcript audio data to text."
|
||||
since: 3x
|
||||
logo: images/addons/googlestt.png
|
||||
install: manual
|
||||
---
|
||||
|
||||
|
|
|
@ -85,13 +85,11 @@
|
|||
<channel-type id="textualstate">
|
||||
<item-type>String</item-type>
|
||||
<label>Textual State</label>
|
||||
<description></description>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="mowed">
|
||||
<item-type>Dimmer</item-type>
|
||||
<label>Cut Grass</label>
|
||||
<description></description>
|
||||
<state readOnly="true" pattern="%d %%"></state>
|
||||
</channel-type>
|
||||
<channel-type id="ready">
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
<parameter-group name="port">
|
||||
<context>communication</context>
|
||||
<label>Port Configuration</label>
|
||||
<description></description>
|
||||
</parameter-group>
|
||||
|
||||
<parameter name="port" type="text" required="true" groupName="port">
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="flicbutton"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
|
||||
|
||||
<bridge-type id="flicd-bridge">
|
||||
<label>FlicButton Bridge</label>
|
||||
<description>This bridge represents a running instance of the fliclib-linux-hci server (flicd).</description>
|
||||
|
||||
<config-description>
|
||||
<parameter name="hostname" type="text" required="false">
|
||||
<context>network-address</context>
|
||||
<label>Flic Daemon (flicd) Hostname</label>
|
||||
<description>IP or Host name of the Flic daemon (flicd).</description>
|
||||
<default>localhost</default>
|
||||
</parameter>
|
||||
<parameter name="port" type="integer" required="false">
|
||||
<label>Flic Daemon (flicd) Port</label>
|
||||
<description>Port where flicd is running. Defaults to 5551.</description>
|
||||
<default>5551</default>
|
||||
</parameter>
|
||||
</config-description>
|
||||
</bridge-type>
|
||||
|
||||
<thing-type id="button">
|
||||
<supported-bridge-type-refs>
|
||||
<bridge-type-ref id="flicd-bridge"/>
|
||||
</supported-bridge-type-refs>
|
||||
<label>Flic Button</label>
|
||||
<description>The thing(-type) representing a Flic Button</description>
|
||||
<channels>
|
||||
<channel id="rawbutton" typeId="system.rawbutton"/>
|
||||
<channel id="button" typeId="system.button"/>
|
||||
<channel id="battery-level" typeId="system.battery-level"/>
|
||||
</channels>
|
||||
<config-description>
|
||||
<parameter name="address" type="text" required="true">
|
||||
<label>Address</label>
|
||||
<description>Bluetooth address in XX:XX:XX:XX:XX:XX format</description>
|
||||
</parameter>
|
||||
</config-description>
|
||||
</thing-type>
|
||||
</thing:thing-descriptions>
|
|
@ -22,7 +22,6 @@
|
|||
</parameter>
|
||||
<parameter name="port" type="integer">
|
||||
<label>Port</label>
|
||||
<description></description>
|
||||
<default>36330</default>
|
||||
</parameter>
|
||||
<parameter name="password" type="text">
|
||||
|
|
|
@ -30,7 +30,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="direction" type="text" required="false">
|
||||
<label>Channel Direction</label>
|
||||
|
@ -65,7 +64,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="inverted" type="boolean" required="false">
|
||||
<label>Inverted Signal</label>
|
||||
|
@ -81,7 +79,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="direction" type="text" required="false">
|
||||
<label>Channel Direction</label>
|
||||
|
@ -111,7 +108,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="direction" type="text" required="false">
|
||||
<label>Channel Direction</label>
|
||||
|
@ -146,7 +142,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="direction" type="text" required="false">
|
||||
<label>Channel Direction</label>
|
||||
|
@ -176,7 +171,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="direction" type="text" required="false">
|
||||
<label>Channel Direction</label>
|
||||
|
@ -206,7 +200,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="direction" type="text" required="false">
|
||||
<label>Channel Direction</label>
|
||||
|
@ -278,7 +271,6 @@
|
|||
<config-description>
|
||||
<parameter name="resourceId" type="integer" required="true">
|
||||
<label>Resource Id</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="longPressTime" type="integer" required="true" step="1000" min="0" max="5000" unit="ms">
|
||||
<label>Long Press Time</label>
|
||||
|
|
|
@ -7,7 +7,6 @@
|
|||
extensible="switch, contact, number, dimmer, datetime, string, rollershutter, rf-device-low-battery, rf-device-signal-strength, push-button-trigger">
|
||||
|
||||
<label>IHC / ELKO Controller</label>
|
||||
<description></description>
|
||||
|
||||
<channels>
|
||||
<channel typeId="controller-state" id="controllerState"/>
|
||||
|
|
|
@ -65,28 +65,24 @@
|
|||
<channel-type id="colorRGB">
|
||||
<item-type>Color</item-type>
|
||||
<label>Color Value (Red,Green,Blue)</label>
|
||||
<description></description>
|
||||
<config-description-ref uri="thing-type:mqtt:color_channel"></config-description-ref>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="colorHSB">
|
||||
<item-type>Color</item-type>
|
||||
<label>Color Value (Hue,Saturation,Brightness)</label>
|
||||
<description></description>
|
||||
<config-description-ref uri="thing-type:mqtt:color_channel"></config-description-ref>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="color">
|
||||
<item-type>Color</item-type>
|
||||
<label>Color Value (HSB, RGB or CIE xyY)</label>
|
||||
<description></description>
|
||||
<config-description-ref uri="thing-type:mqtt:color_channel"></config-description-ref>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="trigger">
|
||||
<kind>trigger</kind>
|
||||
<label>Trigger</label>
|
||||
<description></description>
|
||||
<config-description-ref uri="thing-type:mqtt:trigger_channel"></config-description-ref>
|
||||
</channel-type>
|
||||
|
||||
|
|
|
@ -207,16 +207,19 @@
|
|||
<description>States whether a device is online or offline</description>
|
||||
<state readOnly="true"></state>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="latency">
|
||||
<item-type>Number:Time</item-type>
|
||||
<label>Latency</label>
|
||||
<description>States the latency time</description>
|
||||
<state readOnly="true" pattern="%d %unit%"></state>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="lastseen">
|
||||
<item-type>DateTime</item-type>
|
||||
<label>Last Seen</label>
|
||||
<description>States the last seen date/time</description>
|
||||
<category>time</category>
|
||||
<state readOnly="true"></state>
|
||||
</channel-type>
|
||||
</thing:thing-descriptions>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
<thing-type id="smo40-udp">
|
||||
<label>UDP Connected Nibe SMO40 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="smo40-sensor-group-channels" id="sensor"/>
|
||||
|
@ -67,7 +66,6 @@
|
|||
|
||||
<thing-type id="smo40-serial">
|
||||
<label>Serial Port Connected SMO40 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="smo40-sensor-group-channels" id="sensor"/>
|
||||
|
@ -127,7 +125,6 @@
|
|||
|
||||
<thing-type id="smo40-simulator">
|
||||
<label>Simulator for Nibe SMO40 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="smo40-sensor-group-channels" id="sensor"/>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
<thing-type id="f1x45-udp">
|
||||
<label>UDP Connected Nibe F1145 and F1245 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f1x45-sensor-group-channels" id="sensor"/>
|
||||
|
@ -67,7 +66,6 @@
|
|||
|
||||
<thing-type id="f1x45-serial">
|
||||
<label>Serial Port Connected F1145 and F1245 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f1x45-sensor-group-channels" id="sensor"/>
|
||||
|
@ -127,7 +125,6 @@
|
|||
|
||||
<thing-type id="f1x45-simulator">
|
||||
<label>Simulator for Nibe F1145 and F1245 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f1x45-sensor-group-channels" id="sensor"/>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
<thing-type id="f1x55-udp">
|
||||
<label>UDP Connected Nibe F1155 and F1255 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f1x55-sensor-group-channels" id="sensor"/>
|
||||
|
@ -67,7 +66,6 @@
|
|||
|
||||
<thing-type id="f1x55-serial">
|
||||
<label>Serial Port Connected F1155 and F1255 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f1x55-sensor-group-channels" id="sensor"/>
|
||||
|
@ -127,7 +125,6 @@
|
|||
|
||||
<thing-type id="f1x55-simulator">
|
||||
<label>Simulator for Nibe F1155 and F1255 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f1x55-sensor-group-channels" id="sensor"/>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
<thing-type id="f470-udp">
|
||||
<label>UDP Connected Nibe F470 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f470-sensor-group-channels" id="sensor"/>
|
||||
|
@ -67,7 +66,6 @@
|
|||
|
||||
<thing-type id="f470-serial">
|
||||
<label>Serial Port Connected F470 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f470-sensor-group-channels" id="sensor"/>
|
||||
|
@ -127,7 +125,6 @@
|
|||
|
||||
<thing-type id="f470-simulator">
|
||||
<label>Simulator for Nibe F470 Heat Pumps</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f470-sensor-group-channels" id="sensor"/>
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
<thing-type id="f750-udp">
|
||||
<label>UDP Connected Nibe F750 Heat Pump</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f750-sensor-group-channels" id="sensor"/>
|
||||
|
@ -67,7 +66,6 @@
|
|||
|
||||
<thing-type id="f750-serial">
|
||||
<label>Serial Port Connected F750 Heat Pump</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f750-sensor-group-channels" id="sensor"/>
|
||||
|
@ -127,7 +125,6 @@
|
|||
|
||||
<thing-type id="f750-simulator">
|
||||
<label>Simulator for Nibe F750 Heat Pump</label>
|
||||
<description></description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="f750-sensor-group-channels" id="sensor"/>
|
||||
|
|
|
@ -41,7 +41,6 @@ access to some portion of the premises to selected users.]]>
|
|||
<config-description>
|
||||
<parameter name="id" type="integer" min="1" max="32" required="true">
|
||||
<label>Partition Number</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="forceArming" type="boolean" required="false">
|
||||
<label>Force Arming</label>
|
||||
|
|
|
@ -527,7 +527,6 @@
|
|||
<channel-type id="meterPowerFactor">
|
||||
<item-type>Number</item-type>
|
||||
<label>Power Factor</label>
|
||||
<description></description>
|
||||
<state readOnly="true" pattern="%.2f %unit%">
|
||||
</state>
|
||||
</channel-type>
|
||||
|
|
|
@ -194,7 +194,6 @@
|
|||
<channel-type id="currentlyPlayedTrackHref" advanced="true">
|
||||
<item-type>String</item-type>
|
||||
<label>Track URL</label>
|
||||
<description></description>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
<channel-type id="currentlyPlayedTrackUri" advanced="true">
|
||||
|
|
|
@ -93,12 +93,10 @@
|
|||
<config-description>
|
||||
<parameter name="username" type="text" required="true">
|
||||
<label>Username</label>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="password" type="text" required="true">
|
||||
<label>Password</label>
|
||||
<context>password</context>
|
||||
<description></description>
|
||||
</parameter>
|
||||
<parameter name="url" type="text" required="true">
|
||||
<label>URL</label>
|
||||
|
|
|
@ -0,0 +1,191 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="zwave"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0
|
||||
https://openhab.org/schemas/thing-description/v1.0.0">
|
||||
|
||||
<thing-type id="abus_plbw10100_00_000" listed="false">
|
||||
<label>PLBW10100 Nexello Motion Detector</label>
|
||||
<description><![CDATA[
|
||||
Nexello Motion Detector<br /> <h1>Overview</h1><p>Battery powered Motion detector (PIR) with integrated illuminance sensor (separate day/night report) and tamper protection.<br /></p> <br /> <h2>Inclusion Information</h2><p>Within 1.5 seconds, press 3 times on the link-button.</p> <br /> <h2>Exclusion Information</h2><p>Within 1.5 seconds, press 3 times on the link-button.</p> <br /> <h2>Wakeup Information</h2><p><br /></p>
|
||||
]]></description>
|
||||
<category>MotionDetector</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
<channel id="sensor_luminance" typeId="sensor_luminance">
|
||||
<label>Sensor (luminance)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_SENSOR_MULTILEVEL;type=LUMINANCE</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_burglar" typeId="alarm_burglar">
|
||||
<label>Alarm (burglar)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=BURGLAR</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_power" typeId="alarm_power">
|
||||
<label>Alarm (power)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=POWER_MANAGEMENT</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
<!-- DEVICE PROPERTY DEFINITIONS -->
|
||||
<properties>
|
||||
<property name="vendor">ABUS Security-Center GmbH & Co. KG</property>
|
||||
<property name="modelId">PLBW10100</property>
|
||||
<property name="manufacturerId">0403</property>
|
||||
<property name="manufacturerRef">0002:0007</property>
|
||||
<property name="dbReference">1472</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
<config-description>
|
||||
|
||||
<!-- GROUP DEFINITIONS -->
|
||||
<parameter-group name="configuration">
|
||||
<context>setup</context>
|
||||
<label>Configuration Parameters</label>
|
||||
</parameter-group>
|
||||
|
||||
<parameter-group name="association">
|
||||
<context>link</context>
|
||||
<label>Association Groups</label>
|
||||
</parameter-group>
|
||||
|
||||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_10_1" type="integer" groupName="configuration">
|
||||
<label>10: Battery Alarm Threshold</label>
|
||||
<description><![CDATA[
|
||||
Threshold value for battery alarm.<br /> <h1>Overview</h1><p>Percentage value from when the low battery alarm should be transmitted.</p><p> • Adjustable from <b>5 - 50</b> in percent</p><p>(Hexadecimal: 0x05 - 0x32)</p>
|
||||
]]></description>
|
||||
<default>10</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_1" type="integer" groupName="configuration">
|
||||
<label>12: Sensor Activation</label>
|
||||
<description><![CDATA[
|
||||
Enables or disables the sensor.<br /> <h1>Overview</h1><p>Enable / Disable the PIR sensor.</p><p> • 0 = Sensor is deactivated</p><p> • 1 = Sensor is activated</p><p>(Hexadecimal: 0x00 - 0x01)</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<options>
|
||||
<option value="0">Sensor is deactivated</option>
|
||||
<option value="1">Sensor is activated</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration">
|
||||
<label>13: Waiting Time</label>
|
||||
<description><![CDATA[
|
||||
Waiting time between two motion alarms.<br /> <h1>Overview</h1><p>Waiting time from one motion alarm to the next triggering.</p><p> • Adjustable from <b>5 - 15300</b> in seconds</p><p>(Hexadecimal: 0x05 - 0x3BC4)</p>
|
||||
]]></description>
|
||||
<default>60</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_14_1" type="integer" groupName="configuration">
|
||||
<label>14: BASIC SET (Association Group 2)</label>
|
||||
<description><![CDATA[
|
||||
BASIC SET to association group 2 (motion alarm).<br /> <h1>Overview</h1><p>BASIC SET should be sent after a motion alarm.</p><p> • 0 = Disabled</p><p> • 1 = Enabled</p><p>(Hexadecimal: 0x00 - 0x01)</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Disabled</option>
|
||||
<option value="1">Enabled</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_15_1" type="integer" groupName="configuration">
|
||||
<label>15: Invert BASIC SET</label>
|
||||
<description><![CDATA[
|
||||
Invert value of BASIC SET command.<br /> <h1>Overview</h1><p>Set the value of the BASIC SET command for movement alarm and acknowledgement.</p><p> • 0 = The motion alarm sends the BASIC SET value "On" (0xFF), the acknowledgement sends the BASIC SET value "Off" (0x00)</p><p> • 1 = The motion alarm sends the BASIC SET value "Off" (0x00), the acknowledgement sends the BASIC SET value "On" (0xFF)</p><p>(Hexadecimal: 0x00 - 0x01)</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Disabled</option>
|
||||
<option value="1">Enabled</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_16_1" type="integer" groupName="configuration">
|
||||
<label>16: Sensor Sensitivity</label>
|
||||
<description><![CDATA[
|
||||
Sensitivity PIR sensor.<br /> <h1>Overview</h1><p>Sensitivity value of the PIR sensor. The value 10 is the highest sensitivity. The value 1 is the lowest sensitivity.</p><p> • Adjustable from <b>1 - 10</b></p><p>(Hexadecimal: 0x00 - 0x0A)</p>
|
||||
]]></description>
|
||||
<default>9</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_17_1" type="integer" groupName="configuration">
|
||||
<label>17: Pet Immunity</label>
|
||||
<description><![CDATA[
|
||||
Pet Immunity Active / Deactive.<br /> <h1>Overview</h1><p>Activate/deactivate the pet immunity.<br /></p><p> • 0 = Pet immunity is deactivated</p><p> • 1 = Pet immunity is activated</p><p>(Hexadecimal: 0x00 - 0x01)</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Deactivated</option>
|
||||
<option value="1">Activated</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_18_1" type="integer" groupName="configuration">
|
||||
<label>18: Light Values</label>
|
||||
<description><![CDATA[
|
||||
Light values after movement alarm.<br /> <h1>Overview</h1><p>Defines which additional reports are to be sent in the event of a movement alarm.</p><p> • 1 = Sensor multilevel report (LUX)</p><p> • 2 = Light alarm report is sent</p><p> • 3 = Lux and light alarm report is sent</p><p>(Hexadecimal: 0x00 - 0x03)</p>
|
||||
]]></description>
|
||||
<default>3</default>
|
||||
<options>
|
||||
<option value="1">Sensor multilevel report</option>
|
||||
<option value="2">Light alarm report is sent</option>
|
||||
<option value="3">Lux and light alarm report is sent</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_19_2" type="integer" groupName="configuration">
|
||||
<label>19: Light Alarm Threshold</label>
|
||||
<description><![CDATA[
|
||||
Threshold value for light alarm report.<br /> <h1>Overview</h1><p>Threshold value from which LUX value the light alarm (day) is sent.</p><p> • Adjustable from <b>0 - 500</b> in lux</p>
|
||||
]]></description>
|
||||
<default>50</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<description><![CDATA[
|
||||
Notification Report; Battery Report; Device Reset Locally Notification; Sensor Multilevel Report<br /> <h1>Overview</h1><p>The Lifeline Association is automatically established between the Z-Wave controller and the device during inclusion and defines what information is exchanged between the Z-Wave controller and the device. </p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: On/Off Control</label>
|
||||
<description><![CDATA[
|
||||
Basic Set;<br /> <h1>Overview</h1><p>When the motion alarm is triggered, it sends a BASIC SET On / Off command to the nodes of group 2 </p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -31,6 +31,12 @@ WallMote Quad<br /> <h1>Overview</h1><p>Aeotec WallMote Quad is an intelligent Z
|
|||
<property name="binding:*:PercentType">COMMAND_CLASS_BATTERY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="basic_switch_binary1" typeId="switch_binary">
|
||||
<label>Button Number 1</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_BASIC:1</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_startstop1" typeId="switch_startstop">
|
||||
<label>Swipe Switch 1</label>
|
||||
<properties>
|
||||
|
@ -43,6 +49,12 @@ WallMote Quad<br /> <h1>Overview</h1><p>Aeotec WallMote Quad is an intelligent Z
|
|||
<property name="binding:*:DecimalType">COMMAND_CLASS_CENTRAL_SCENE:1</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="basic_switch_binary2" typeId="switch_binary">
|
||||
<label>Button Number 2</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_BASIC:2</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_startstop2" typeId="switch_startstop">
|
||||
<label>Swipe Switch 2</label>
|
||||
<properties>
|
||||
|
@ -55,6 +67,12 @@ WallMote Quad<br /> <h1>Overview</h1><p>Aeotec WallMote Quad is an intelligent Z
|
|||
<property name="binding:*:DecimalType">COMMAND_CLASS_CENTRAL_SCENE:2</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="basic_switch_binary3" typeId="switch_binary">
|
||||
<label>Button Number 3</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_BASIC:3</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_startstop3" typeId="switch_startstop">
|
||||
<label>Swipe Switch 3</label>
|
||||
<properties>
|
||||
|
@ -67,6 +85,12 @@ WallMote Quad<br /> <h1>Overview</h1><p>Aeotec WallMote Quad is an intelligent Z
|
|||
<property name="binding:*:DecimalType">COMMAND_CLASS_CENTRAL_SCENE:3</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="basic_switch_binary4" typeId="switch_binary">
|
||||
<label>Button Number 4</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_BASIC:4</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_startstop4" typeId="switch_startstop">
|
||||
<label>Swipe Switch 4</label>
|
||||
<properties>
|
||||
|
|
|
@ -0,0 +1,672 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="zwave"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0
|
||||
https://openhab.org/schemas/thing-description/v1.0.0">
|
||||
|
||||
<thing-type id="aeotec_multisensor7_00_000" listed="false">
|
||||
<label>Aeotec Multisensor 7 Multisensor</label>
|
||||
<description><![CDATA[
|
||||
Multisensor<br /> <h1>Overview</h1><p>Aeotec MultiSensor 7 was developed to detect ambient values and movement and to transmit them with Z-Wave Plus. It is powered by Aeotec’s Gen7 technology. </p> <br /> <h2>Inclusion Information</h2><ol><li>Power on the device, the power led will blink blue slowly.</li><li>Let the Primary Controller into inclusion mode (If you don’t know how to do this, refer to its manual)</li><li>Press the action button one time, when the yellow led on release the button. It indicates the device has enter learn mode.</li><li>If added successful, the power led will flash (white -> green -> white -> green at a rate of 250ms per each color) for 2 seconds</li></ol> <br /> <h2>Exclusion Information</h2><ol><li>Power on the device.</li><li>Let the Primary Controller into exclusion mode (If you don’t know how to do this refer to its manual)</li><li>Press the action button one time, when the purple led on release the button. It indicates the device has enter learn mode.</li><li>If removed successful, the blue led will blink slowly.</li></ol> <br /> <h2>Wakeup Information</h2><p><br /></p>
|
||||
]]></description>
|
||||
<category>Sensor</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
<channel id="sensor_binary" typeId="sensor_binary">
|
||||
<label>Binary Sensor</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_SENSOR_BINARY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="sensor_luminance" typeId="sensor_luminance">
|
||||
<label>Sensor (luminance)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_SENSOR_MULTILEVEL;type=LUMINANCE</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="sensor_ultraviolet" typeId="sensor_ultraviolet">
|
||||
<label>Sensor (ultraviolet)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_SENSOR_MULTILEVEL;type=ULTRAVIOLET</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="sensor_temperature" typeId="sensor_temperature">
|
||||
<label>Sensor (temperature)</label>
|
||||
<properties>
|
||||
<property name="binding:*:QuantityType">COMMAND_CLASS_SENSOR_MULTILEVEL;type=TEMPERATURE</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="sensor_relhumidity" typeId="sensor_relhumidity">
|
||||
<label>Sensor (relative humidity)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_SENSOR_MULTILEVEL;type=RELATIVE_HUMIDITY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_system" typeId="alarm_system">
|
||||
<label>Alarm (system)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=SYSTEM</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_burglar" typeId="alarm_burglar">
|
||||
<label>Alarm (burglar)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=BURGLAR</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_power" typeId="alarm_power">
|
||||
<label>Alarm (power)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=POWER_MANAGEMENT</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="battery-level" typeId="system.battery-level">
|
||||
<properties>
|
||||
<property name="binding:*:PercentType">COMMAND_CLASS_BATTERY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
<!-- DEVICE PROPERTY DEFINITIONS -->
|
||||
<properties>
|
||||
<property name="vendor">Aeotec Limited</property>
|
||||
<property name="modelId">Aeotec Multisensor 7</property>
|
||||
<property name="manufacturerId">0371</property>
|
||||
<property name="manufacturerRef">0002:0018,0102:0018</property>
|
||||
<property name="dbReference">1444</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
<config-description>
|
||||
|
||||
<!-- GROUP DEFINITIONS -->
|
||||
<parameter-group name="configuration">
|
||||
<context>setup</context>
|
||||
<label>Configuration Parameters</label>
|
||||
</parameter-group>
|
||||
|
||||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_1_1" type="integer" groupName="configuration">
|
||||
<label>1: Beaming Mode</label>
|
||||
<description><![CDATA[
|
||||
Beaming Mode<br /> <h1>Overview</h1><p>Used to enable/disable beaming. If set to 1, FLiR commands will be supported and device type will be LSS. But the device must be re-included into the network to activate it.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_2" type="integer" groupName="configuration">
|
||||
<label>2: Motion Retrigger Time</label>
|
||||
<description><![CDATA[
|
||||
Motion Retrigger Time<br /> <h1>Overview</h1><p>Presence re-detection time set in second to allow motion sensor to reset timeout of motion sensor. In this time, the motion sensor can not be triggered again. If this value reach zero, the timeout configuration value set by Parameter 3 will be reset.</p><p>0 – disable</p><p>1~30 - 30 seconds</p><p>30 ~ 3600 - timeout set in seconds</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_2" type="integer" groupName="configuration">
|
||||
<label>3: Motion Untrigger Time</label>
|
||||
<description><![CDATA[
|
||||
Motion Untrigger Time<br /> <h1>Overview</h1><p>Timeout configuration set in second for motion sensor to send no trigger status.</p>
|
||||
]]></description>
|
||||
<default>240</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<label>4: Motion Sensitivity</label>
|
||||
<description><![CDATA[
|
||||
Motion Sensitivity<br /> <h1>Overview</h1><p>Set the sensitivity of motion sensor.</p><p>0 - disable</p><p>1 - minimum sensitivity</p><p>11 - maximum sensitivity</p>
|
||||
]]></description>
|
||||
<default>11</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration">
|
||||
<label>5: Motion Report Type</label>
|
||||
<description><![CDATA[
|
||||
Motion Report Type<br /> <h1>Overview</h1><p>Set which command class will be sent when motion sensor is triggered or detriggered.</p><p>0 - Sends Notification Report</p><p>1 - Sends Sensor Binary Report</p><p>2 - Sends Notification and Sensor Binary Report</p>
|
||||
]]></description>
|
||||
<default>2</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_0" type="integer" groupName="configuration">
|
||||
<label>6: Vibration Sensor Enable/Disable</label>
|
||||
<description><![CDATA[
|
||||
Vibration Sensor Enable/Disable<br /> <h1>Overview</h1><p>Used to enable/disable vibration sensor.</p><p>0 - disable vibration</p><p>1~254 - timeout set in minutes to reset vibration status</p><p>255 - only send vibration triggered, does not timeout</p>
|
||||
]]></description>
|
||||
<default>255</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_7_1" type="integer" groupName="configuration">
|
||||
<label>7: Vibration Intensity Reports</label>
|
||||
<description><![CDATA[
|
||||
Vibration Intensity Reports<br /> <h1>Overview</h1><p>Used to enable/disable vibration intensity reports. If set to 1, vibration intensity will be sent to gateway when</p><p>triggered. If set to 0, do not report.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_9_1" type="integer" groupName="configuration">
|
||||
<label>9: Wakeup CC Timeout</label>
|
||||
<description><![CDATA[
|
||||
Wakeup CC Timeout<br /> <h1>Overview</h1><p>Timeout set in seconds after Wakeup CC is send out before go to sleep. If role type is RSS, the minimum value will</p><p>be 10. If role type is LSS, the minimum value will be 2. If wakeup no more information received, return to sleep</p><p>mode immediately.</p>
|
||||
]]></description>
|
||||
<default>15</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_10_0" type="integer" groupName="configuration" readOnly="true">
|
||||
<label>10: Power Status</label>
|
||||
<description><![CDATA[
|
||||
Power Status<br /> <h1>Overview</h1><p>This value is Readonly. Used to report the power status (USB or Battery powered)</p><p>0 - When battery powered, the device will act as RSS.</p><p>1 - When USB cable insert, the device will act as AOS.</p><p>The device must be re-included in the network to change the role type.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_1" type="integer" groupName="configuration">
|
||||
<label>11: Motion Group Control (Group2)</label>
|
||||
<description><![CDATA[
|
||||
Motion Group Control (Group2)<br /> <h1>Overview</h1><p>Set control of other devices on group2 based on motion trigger</p><p>0 - Send BASIC_SET (0xFF) when motion is triggered to associated device</p><p>Send BASIC_SET (0x00) when motion is untriggered to associated device</p><p>1 - Send BASIC_SET (0x00) when motion is triggered</p><p>Send BASIC_SET (0xFF) when motion is untriggered</p><p>2 - Send BASIC_SET (0xFF) when motion is triggered, Nothing when motion untriggered.</p><p>3 - Send BASIC_SET (0x00) when motion is triggered, Nothing when motion untriggered.</p><p>4 - Send BASIC_SET (0x00) when motion is untriggered, Nothing when motion triggered.</p><p>5 - Send BASIC_SET (0xFF) when motion is untriggered, Nothing when motion triggered.</p><p>6 - Send BASIC_SET (value is configured by parameter 12) when motion is triggered to associated devices.</p><p>Send BASIC_SET (value is configured by parameter 12) when motion is untriggered.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_2" type="integer" groupName="configuration">
|
||||
<label>12: Motion Group Value Setting</label>
|
||||
<description><![CDATA[
|
||||
Motion Group Value Setting<br /> <h1>Overview</h1><p>Set Basic Set value for Group2. The MSB will act as the basic set value when motion trigger. The LSB will act as the</p><p>basic set value when motion untrigger. E.g. value=0x0A00, then BASIC_SET(0x0A) will be sent when motion trigger,</p><p>BASIC_SET(0x00) will be sent when motion untrigger.</p>
|
||||
]]></description>
|
||||
<default>-256</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration">
|
||||
<label>13: Motion Group Control Requirement</label>
|
||||
<description><![CDATA[
|
||||
Motion Group Control Requirement<br /> <h1>Overview</h1><p>Set threshold of Light/Lux when devices associated in group2 should be triggered by motion. Associated device only</p><p>receive BASIC_SET command when light <= (this value).</p>
|
||||
]]></description>
|
||||
<default>30000</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_14_1" type="integer" groupName="configuration">
|
||||
<label>14: Over Humidity Group Threshold (Group5)</label>
|
||||
<description><![CDATA[
|
||||
Over Humidity Group Threshold (Group5)<br /> <h1>Overview</h1><p>Set threshold of humidity. If measured humidity >= (this value), send BASIC_SET (0xFF) to associated devices</p><p>through group5. If measured humidity < (this value) send BASIC_SET (0x00) to associated devices through group5.</p>
|
||||
]]></description>
|
||||
<default>60</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_15_0" type="integer" groupName="configuration">
|
||||
<label>15: Under Humidity Group Threshold (Group6)</label>
|
||||
<description><![CDATA[
|
||||
Under Humidity Group Threshold (Group6)<br /> <h1>Overview</h1><p>Set threshold of humidity. If measure humidity <= (this value) send BASIC_SET (0xFF) to associated devices through</p><p>group6. If measured humidity > (this value) send BASIC_SET (0x00) to associated devices through group6.</p>
|
||||
]]></description>
|
||||
<default>40</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_16_2" type="integer" groupName="configuration">
|
||||
<label>16: Over Heat Group Threshold (Group3)</label>
|
||||
<description><![CDATA[
|
||||
Over Heat Group Threshold (Group3)<br /> <h1>Overview</h1><p>Set threshold of temperature. Designed to control Air Conditioners or temperature controllers ON or OFF. If</p><p>measured temperature >= (this value, Scale is determined by Param64) send BASIC_SET (0xFF) to associated devices.</p><p>If measured temperature < (this value) send BASIC_SET (0x00) to associated devices. E.g. Value 239 means 23.9 C.</p><p>Value 750 means 75.0 F.</p><p>Value Range (EU/AU) : 400~850<br /></p><p>Value Range (US) : 400~1850</p><p>Default Value (EU/AU) : 239 <br /></p><p>Default Value (US) :750</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_17_2" type="integer" groupName="configuration">
|
||||
<label>17: Under Heat Group Threshold (Group4)</label>
|
||||
<description><![CDATA[
|
||||
Under Heat Group Threshold (Group4)<br /> <h1>Overview</h1><p>Set threshold of temperature. Designed to control Air Conditioners or temperature controllers ON or OFF. If</p><p>measured temperature <= (this value, Scale is determined by Param64) send BASIC_SET (0xFF) to associated devices.</p><p>If measured temperature > (this value) send BASIC_SET (0x00) to associated devices. E.g. Value 155 means 15.5 C.</p><p>Value 600 means 60.0 F.</p><p>Value Range (EU/AU) : 400~850</p><p>Value Range (US) : 400~1850</p><p>Default Value (EU/AU) : 155</p><p>Default Value (US) : 600<br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_18_2" type="integer" groupName="configuration">
|
||||
<label>18: Over Light Group Threshold (Group7)</label>
|
||||
<description><![CDATA[
|
||||
Over Light Group Threshold (Group7)<br /> <h1>Overview</h1><p>Set threshold of Light/Lux. If measured light/lux >= (this value) send BASIC_SET (0xFF) to associated devices. If</p><p>measured light/lux < (this value) send BASIC_SET (0x00) to associated devices.</p>
|
||||
]]></description>
|
||||
<default>2000</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_19_2" type="integer" groupName="configuration">
|
||||
<label>19: Under Light Group Threshold (Group8)</label>
|
||||
<description><![CDATA[
|
||||
Under Light Group Threshold (Group8)<br /> <h1>Overview</h1><p>Set threshold of Light/Lux. If measured light/lux <= (this value) send BASIC_SET (0xFF) to associated devices. If</p><p>measured light/lux > (this value) send BASIC_SET (0x00) to associated devices.</p>
|
||||
]]></description>
|
||||
<default>100</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_20_1" type="integer" groupName="configuration">
|
||||
<label>20: Over UV Group Threshold (Group9)</label>
|
||||
<description><![CDATA[
|
||||
Over UV Group Threshold (Group9)<br /> <h1>Overview</h1><p>Set threshold of UV. If measured UV >= (this value) send BASIC_SET (0xFF) to associated devices. If measured UV <</p><p>(this value) send BASIC_SET (0x00) to associated devices.</p>
|
||||
]]></description>
|
||||
<default>8</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_21_1" type="integer" groupName="configuration">
|
||||
<label>21: Under UV Group Threshold (Group10)</label>
|
||||
<description><![CDATA[
|
||||
Under UV Group Threshold (Group10)<br /> <h1>Overview</h1><p>Set threshold of UV. If measured UV <= (this value) send BASIC_SET (0xFF) to associated devices. If measured UV ></p><p>(this value) send BASIC_SET (0x00 to associated devices.)</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_39_1" type="integer" groupName="configuration">
|
||||
<label>39: Low Battery Threshold</label>
|
||||
<description><![CDATA[
|
||||
Low Battery Threshold<br /> <h1>Overview</h1><p>Configure low battery report threshold, sends low battery report via notification and battery report when battery</p><p>level drops under setting. Unit %.</p>
|
||||
]]></description>
|
||||
<default>50</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_40_1" type="integer" groupName="configuration">
|
||||
<label>40: Threshold Check Enable/Disable</label>
|
||||
<description><![CDATA[
|
||||
Threshold Check Enable/Disable<br /> <h1>Overview</h1><p>Enable/Disable threshold reporting, check time can be adjusted by Param45.</p><p>0 - disable all threshold reports</p><p>1 - enable all threshold reports</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_41_1" type="integer" groupName="configuration">
|
||||
<label>41: Temperature Threshold</label>
|
||||
<description><![CDATA[
|
||||
Temperature Threshold<br /> <h1>Overview</h1><p>Threshold = (Value * 0.1) Scale is determined by Param64. 0 = disable.</p>
|
||||
]]></description>
|
||||
<default>10</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_42_1" type="integer" groupName="configuration">
|
||||
<label>42: Humidity Threshold</label>
|
||||
<description><![CDATA[
|
||||
Humidity Threshold<br /> <h1>Overview</h1><p>Humidity range = 1% to 50%, 0 = disable.</p>
|
||||
]]></description>
|
||||
<default>5</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_43_2" type="integer" groupName="configuration">
|
||||
<label>43: Lux Threshold</label>
|
||||
<description><![CDATA[
|
||||
Lux Threshold<br /> <h1>Overview</h1><p>0 = disable.</p>
|
||||
]]></description>
|
||||
<default>250</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_44_1" type="integer" groupName="configuration">
|
||||
<label>44: UV Threshold</label>
|
||||
<description><![CDATA[
|
||||
UV Threshold<br /> <h1>Overview</h1><p>0 = disable.</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_45_2" type="integer" groupName="configuration">
|
||||
<label>45: Threshold Check Time</label>
|
||||
<description><![CDATA[
|
||||
Threshold Check Time<br /> <h1>Overview</h1><p>Set threshold check time in seconds if threshold is enable via Parameter 40.</p><p>1~65535 - When USB powered</p><p>60~65535 - When Battery powered</p>
|
||||
]]></description>
|
||||
<default>255</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_46_1" type="integer" groupName="configuration">
|
||||
<label>46: Low Temperature Report</label>
|
||||
<description><![CDATA[
|
||||
Low Temperature Report<br /> <h1>Overview</h1><p>Eable/Disable alarm report for low temperature(<= -15 C) Multilevel CC temperature report will be sent to gateway.</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_48_0_00000100" type="integer" groupName="configuration">
|
||||
<label>48: Sensor Limit Control</label>
|
||||
<description><![CDATA[
|
||||
Sensor Limit Control<br /> <h1>Overview</h1><p>This value is bit mask. Used to enable/disable measurement reports for various sensors that is more than the upper</p><p>limit value or less than the lower limit value.</p><p>0 - Disabled</p><p>1 - Temperature upper level</p><p>2 - Humidity upper level</p><p>4 - Lux upper level</p><p>8 - UV upper level</p><p>16 - Temperature lower level</p><p>32 - Humidity lower level</p><p>64 - Lux lower level</p><p>128 - UV lower level</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_49_2" type="integer" groupName="configuration">
|
||||
<label>49: Temperature Upper Limit</label>
|
||||
<description><![CDATA[
|
||||
Temperature Upper Limit<br /> <h1>Overview</h1><p>Set upper limit level for temperature set in scale of 0.1. Scale is determined by Param64. If (Current measurement) ></p><p>(Upper Limit), then report sensor.</p><p>Value Range (EU/AU) : 400~1000</p><p>Value Range (US) : 400~21200</p><p>Default value (EU/AU) : 280</p><p>Default value (US) : 824 </p><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_50_2" type="integer" groupName="configuration">
|
||||
<label>50: Temperature Lower Limit</label>
|
||||
<description><![CDATA[
|
||||
Temperature Lower Limit<br /> <h1>Overview</h1><p>Set lower limit level for temperature set in scale of 0.1. Scale is determined by Param64. If (Current Measurement) <</p><p>(Lower limit), then report sensor.</p><p>Value Range (EU/AU) : 400~1000<br /></p><p>Value Range (US) : 400~2120<br /></p><p>Default Value (EU/AU) : 0<br /></p><p>Default Value (US) : 320<br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_51_1" type="integer" groupName="configuration">
|
||||
<label>51: Temperature Recover Limit</label>
|
||||
<description><![CDATA[
|
||||
Temperature Recover Limit<br /> <h1>Overview</h1><p>Temperature recover limit set in scale of 0.1. Scale is determined by Param64. If (Current measurement) <= (upper</p><p>limit - recover limit), then temperature report. If (Current measurement) >= (lower limit + recover limit), then</p><p>temperature report.</p>
|
||||
]]></description>
|
||||
<default>20</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_51_1" type="integer" groupName="configuration">
|
||||
<label>51: Humidity Upper Limit</label>
|
||||
<description><![CDATA[
|
||||
Humidity Upper Limit<br /> <h1>Overview</h1><p>Set humidity upper limit level.</p>
|
||||
]]></description>
|
||||
<default>60</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_53_1" type="integer" groupName="configuration">
|
||||
<label>53: Humidity Lower Limit</label>
|
||||
<description><![CDATA[
|
||||
Humidity Lower Limit<br /> <h1>Overview</h1><p>Set humidity lower limit level.</p>
|
||||
]]></description>
|
||||
<default>40</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_54_1" type="integer" groupName="configuration">
|
||||
<label>54: Humidity Recover Limit</label>
|
||||
<description><![CDATA[
|
||||
Humidity Recover Limit<br /> <h1>Overview</h1><p>Set humidity recover limit level. Refer to Param 51.</p>
|
||||
]]></description>
|
||||
<default>5</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_55_2" type="integer" groupName="configuration">
|
||||
<label>55: Lux Upper Limit</label>
|
||||
<description><![CDATA[
|
||||
Lux Upper Limit<br /> <h1>Overview</h1><p>Set lux upper limit level.</p>
|
||||
]]></description>
|
||||
<default>1000</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_56_2" type="integer" groupName="configuration">
|
||||
<label>56: Lux Lower Limit</label>
|
||||
<description><![CDATA[
|
||||
Lux Lower Limit<br /> <h1>Overview</h1><p>Set lux lower limit level.</p>
|
||||
]]></description>
|
||||
<default>100</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_57_1" type="integer" groupName="configuration">
|
||||
<label>57: Lux Recover Limit</label>
|
||||
<description><![CDATA[
|
||||
Lux Recover Limit<br /> <h1>Overview</h1><p>Set lux recover limit level. Refer to Parameter 51.</p>
|
||||
]]></description>
|
||||
<default>100</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_58_1" type="integer" groupName="configuration">
|
||||
<label>58: UV Upper Limit</label>
|
||||
<description><![CDATA[
|
||||
UV Upper Limit<br /> <h1>Overview</h1><p>Set UV upper limit level.</p>
|
||||
]]></description>
|
||||
<default>8</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_59_1" type="integer" groupName="configuration">
|
||||
<label>59: UV Lower Limit</label>
|
||||
<description><![CDATA[
|
||||
UV Lower Limit<br /> <h1>Overview</h1><p>Set UV lower limit level.</p>
|
||||
]]></description>
|
||||
<default>4</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_60_1" type="integer" groupName="configuration">
|
||||
<label>60: UV Recover Limit</label>
|
||||
<description><![CDATA[
|
||||
UV Recover Limit<br /> <h1>Overview</h1><p>Set UV recover limit level. Refer to Parameter 51.</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_61_1_00000100" type="integer" groupName="configuration" readOnly="true">
|
||||
<label>61: Out-of-limit State</label>
|
||||
<description><![CDATA[
|
||||
Out-of-limit State<br /> <h1>Overview</h1><p>This is read only and bit mask. Out of the limit state of sensors.</p><p>Bit Mask:</p><p>0 - within limit</p><p>1 - out of limit</p><p>Value:</p><p>1 - Temperature upper level</p><p>2 - Humidity upper level</p><p>4 - Lux upper level</p><p>8 - UV upper level</p><p>16 - Temperature lower level</p><p>32 - Humidity lower level</p><p>64 - Lux lower level</p><p>128 - UV lower level</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_64_1" type="integer" groupName="configuration">
|
||||
<label>64: Temperature Scale</label>
|
||||
<description><![CDATA[
|
||||
Temperature Scale<br /> <h1>Overview</h1><p>Set the scale for temperature when reports.</p><p>0 - Celsius</p><p>1 - Fahrenheit</p><p>Default Value (EU/AU) : 0<br /></p><p>Default Value (US) : 1<br /></p><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Celsius</option>
|
||||
<option value="1">Fahrenheit</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_81_1" type="integer" groupName="configuration">
|
||||
<label>81: LED Activity</label>
|
||||
<description><![CDATA[
|
||||
LED Activity<br /> <h1>Overview</h1><p>Allow user to enable/disable LED activity of specific reports sent by sensor. Button press indicator is not affected by this.</p><p>0 - disable</p><p>1 - enable</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_82_1" type="integer" groupName="configuration">
|
||||
<label>82: Motion Sensor Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Motion Sensor Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Param81, allow user to change the report color of motion sensor.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_83_1" type="integer" groupName="configuration">
|
||||
<label>83: Temperature Sensor Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Temperature Sensor Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Parameter 81, allow user to change the report color of temperature sensor.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_84_1" type="integer" groupName="configuration">
|
||||
<label>84: Humidity Sensor Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Humidity Sensor Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Param81, allow user to change the report color of humidity sensor.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_85_1" type="integer" groupName="configuration">
|
||||
<label>85: Lux Sensor Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Lux Sensor Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Param81, allow user to change the report color of Lux sensor.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_86_1" type="integer" groupName="configuration">
|
||||
<label>86: UV Sensor Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
UV Sensor Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Param81, allow user to change the report color of UV sensor.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_87_1" type="integer" groupName="configuration">
|
||||
<label>87: Vibration Sensor Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Vibration Sensor Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Param81, allow user to change the report color of vibration sensor.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_88_1" type="integer" groupName="configuration">
|
||||
<label>88: Battery Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Battery Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Param81, allow user to change the report color of battery.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_89_1" type="integer" groupName="configuration">
|
||||
<label>89: Wakeup Report Indicator</label>
|
||||
<description><![CDATA[
|
||||
Wakeup Report Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Parameter 81, allow user to change the report color of wakeup.</p>
|
||||
]]></description>
|
||||
<default>8</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_90_1" type="integer" groupName="configuration">
|
||||
<label>90: Communication Indicator</label>
|
||||
<description><![CDATA[
|
||||
Communication Indicator<br /> <h1>Overview</h1><p>If LED is enabled by Parameter 81, allow user to change indicator color when receiving communication from gateway or other devices.<br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_101_1" type="integer" groupName="configuration">
|
||||
<label>101: Automatic Report Checklist 1</label>
|
||||
<description><![CDATA[
|
||||
Automatic Report Checklist 1<br /> <h1>Overview</h1><p>Checklist 1 for automatic timed report. When the corresponding item is selected, it will be checked when timeout setting by Parameter 111.</p><p>0 - Disabled</p><p>1 - Battery</p><p>16 - UV</p><p>32 - Temperature</p><p>64 - Humidity</p><p>128 - Lux</p><p>Default 241 = 1 + 16 + 32 + 64 + 128, means all enable.</p><p><br /></p>
|
||||
]]></description>
|
||||
<default>-15</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_102_1" type="integer" groupName="configuration">
|
||||
<label>102: Automatic Report Checklist 2</label>
|
||||
<description><![CDATA[
|
||||
Automatic Report Checklist 2<br /> <h1>Overview</h1><p>Checklist 2 for automatic timed report. When the corresponding item is selected, it will be checked when timeout setting by Parameter 112.</p><p>0 - Disabled</p><p>1 - Battery</p><p>16 - UV</p><p>32 - Temperature</p><p>64 - Humidity</p><p>128 - Lux</p><p>Max value 241 = 1 + 16 + 32 + 64 + 128, means all enable.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_103_1" type="integer" groupName="configuration">
|
||||
<label>103: Automatic Report Checklist 3</label>
|
||||
<description><![CDATA[
|
||||
Automatic Report Checklist 3<br /> <h1>Overview</h1><p>Checklist 3 for automatic timed report. When the corresponding item is selected, it will be checked when timeout setting by Parameter 113.</p><p>0 - Disabled</p><p>1 - Battery</p><p>16 - UV</p><p>32 - Temperature</p><p>64 - Humidity</p><p>128 - Lux</p><p>Max value 241 = 1 + 16 + 32 + 64 + 128, means all enable.</p><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_111_2" type="integer" groupName="configuration">
|
||||
<label>111: Automatic Checklist 1 Interval Time</label>
|
||||
<description><![CDATA[
|
||||
Automatic Checklist 1 Interval Time<br /> <h1>Overview</h1><p>Interval time set in seconds to check the checklist1’s items. Multilevel Sensor Report will be sent when timeout.</p>
|
||||
]]></description>
|
||||
<default>3600</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_112_2" type="integer" groupName="configuration">
|
||||
<label>112: Automatic Checklist 2 Interval Time</label>
|
||||
<description><![CDATA[
|
||||
Automatic Checklist 2 Interval Time<br /> <h1>Overview</h1><p>Interval time set in seconds to check the checklist2’s items. Multilevel Sensor Report will be sent when timeout.</p>
|
||||
]]></description>
|
||||
<default>3600</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_113_2" type="integer" groupName="configuration">
|
||||
<label>113: Automatic Checklist 3 Interval Time</label>
|
||||
<description><![CDATA[
|
||||
Automatic Checklist 3 Interval Time<br /> <h1>Overview</h1><p>Interval time set in seconds to check the checklist3’s items. Multilevel Sensor Report will be sent when timeout.</p>
|
||||
]]></description>
|
||||
<default>3600</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_201_1" type="integer" groupName="configuration">
|
||||
<label>201: Temperature Offset Value</label>
|
||||
<description><![CDATA[
|
||||
Temperature Offset Value<br /> <h1>Overview</h1><p>Can add or minus this setting value to calibrate temperature when checked. Scale is defined by Param64. e.g. Value</p><p>15 means 1.5C or 1.5F.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_202_1" type="integer" groupName="configuration">
|
||||
<label>202: Humidity Offset Value</label>
|
||||
<description><![CDATA[
|
||||
Humidity Offset Value<br /> <h1>Overview</h1><p>Can add or minus this setting value to calibrate humidity when checked. Unit: %.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_203_2" type="integer" groupName="configuration">
|
||||
<label>203: Lux Offset Value</label>
|
||||
<description><![CDATA[
|
||||
Lux Offset Value<br /> <h1>Overview</h1><p>Can add or minus this setting value to calibrate Lux when checked.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_204_1" type="integer" groupName="configuration">
|
||||
<label>204: UV Offset Value</label>
|
||||
<description><![CDATA[
|
||||
UV Offset Value<br /> <h1>Overview</h1><p>Can add or minus this setting value to calibrate UV when checked.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -115,13 +115,14 @@ Thermostatic Valve<br /> <h1>Overview</h1><p>Spirit Z-Wave Plus is a Z-Wave radi
|
|||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_1_1" type="integer" groupName="configuration">
|
||||
<label>1: LCD Invert</label>
|
||||
<description>LCD Invert</description>
|
||||
<description><![CDATA[
|
||||
LCD Invert<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">LCD-content normal</option>
|
||||
<option value="1">LCD-content inverted (UK Edition)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration">
|
||||
|
@ -133,28 +134,31 @@ LCD Timeout<br /> <h1>Overview</h1><p>0: No Timeout LCD always on</p> <p>5-30: L
|
|||
<options>
|
||||
<option value="0">No Timeout LCD always on</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<label>3: Backlight</label>
|
||||
<description>Backlight</description>
|
||||
<description><![CDATA[
|
||||
Backlight<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<options>
|
||||
<option value="0">Backlight disabled</option>
|
||||
<option value="1">Backlight enabled</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<label>4: Battery report</label>
|
||||
<description>Battery report</description>
|
||||
<description><![CDATA[
|
||||
Battery report<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<options>
|
||||
<option value="0">system notification</option>
|
||||
<option value="1">Send battery status unsolicited once a day.</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration">
|
||||
|
@ -177,7 +181,9 @@ Valve opening percentage report<br /> <h1>Overview</h1><p>0: Unsolicited valve o
|
|||
|
||||
<parameter name="config_7_1" type="integer" groupName="configuration">
|
||||
<label>7: Window open detection</label>
|
||||
<description>Window open detection</description>
|
||||
<description><![CDATA[
|
||||
Window open detection<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>2</default>
|
||||
<options>
|
||||
<option value="0">Disabled</option>
|
||||
|
@ -185,7 +191,6 @@ Valve opening percentage report<br /> <h1>Overview</h1><p>0: Unsolicited valve o
|
|||
<option value="2">Sensitivity medium</option>
|
||||
<option value="3">Sensitivity high</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_8_1" type="integer" groupName="configuration">
|
||||
|
@ -197,6 +202,7 @@ Measured temperature offset<br /> <h1>Overview</h1><p>-50 ... +50: Offsets the m
|
|||
<options>
|
||||
<option value="128">Use ext. temp. sensor</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -10,7 +10,7 @@
|
|||
<description><![CDATA[
|
||||
Door/Window Sensor 7 Pro<br /> <h1>Overview</h1><p>Aeotec Door / Window Sensor 7 was developed to record the condition of doors or windows with Z-Wave Plus. It is powered by Aeotec’s Gen7 technology and S2 framework. This Pro version adds options for a tilt sensor and terminals for use as a dry contact sensor.<br /></p> <br /> <h2>Inclusion Information</h2><p>Set your Z-Wave controller into pairing mode.</p><p>Triple-click the tamper switch on Door / Window Sensor 7 - this begins to blink five times</p><p>After completion of the inclusion, it lights up once before it goes out.</p><p>Close the cover</p><p>Note: Closing the cover is important! If the housing is not closed, the sensor is permanently awake. Only when the cover is closed does the sensor change to the idle state.</p> <br /> <h2>Exclusion Information</h2><p> Set your Z-Wave controller into unpair mode.</p><p> Triple-click the tamper switch on Door / Window Sensor 7 within 1.5 seconds - this will cause the LED to blink five times.</p><p> After a successful exclusion, it will light up its LED for 2 seconds then deactivate.</p> <br /> <h2>Wakeup Information</h2><p> Wake up the device by removing the cover. </p><p> Then hit the tamper switch once.</p>
|
||||
]]></description>
|
||||
<category>Battery</category>
|
||||
<category>Sensor</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
|
@ -50,7 +50,7 @@ Door/Window Sensor 7 Pro<br /> <h1>Overview</h1><p>Aeotec Door / Window Sensor 7
|
|||
<property name="vendor">Aeotec Limited</property>
|
||||
<property name="modelId">ZWA012</property>
|
||||
<property name="manufacturerId">0371</property>
|
||||
<property name="manufacturerRef">0102:000C</property>
|
||||
<property name="manufacturerRef">0002:000C,0102:000C</property>
|
||||
<property name="dbReference">1390</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
|
|
@ -68,7 +68,7 @@ Motion Sensor<br /> <h1>Overview</h1><p>FIBARO Motion Sensor is a universal Z-Wa
|
|||
<property name="vendor">Fibargroup</property>
|
||||
<property name="modelId">FGMS001</property>
|
||||
<property name="manufacturerId">010F</property>
|
||||
<property name="manufacturerRef">0801:1001,0801:1002,0801:2001,0801:2002,0801:3001,0801:3002,0801:4001,0801:4002,8800:3001</property>
|
||||
<property name="manufacturerRef">0801:1001,0801:1002,0801:2001,0801:2002,0801:3001,0801:3002,0801:4001,0801:4002,0801:6002,8800:3001</property>
|
||||
<property name="versionMin">3.2</property>
|
||||
<property name="dbReference">328</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
|
|
|
@ -83,13 +83,13 @@ FIBARO Walli Double Switch<br /> <h1>Overview</h1><p>FIBARO Walli Double Switch
|
|||
<channel id="meter_watts1" typeId="meter_watts">
|
||||
<label>Electric meter (watts)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:1</property>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:1;type=E_W</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="meter_kwh1" typeId="meter_kwh">
|
||||
<label>Electric meter (kWh)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:1</property>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:1;type=E_KWh</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_binary2" typeId="switch_binary">
|
||||
|
@ -101,13 +101,13 @@ FIBARO Walli Double Switch<br /> <h1>Overview</h1><p>FIBARO Walli Double Switch
|
|||
<channel id="meter_watts2" typeId="meter_watts">
|
||||
<label>Electric meter (watts)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:2</property>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:2;type=E_W</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="meter_kwh2" typeId="meter_kwh">
|
||||
<label>Electric meter (kWh)</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:2</property>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_METER:2;type=E_KWh</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
|
|
@ -81,17 +81,18 @@
|
|||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_1_1" type="integer" groupName="configuration">
|
||||
<label>1: Timeout Duration</label>
|
||||
<description>Amount of time the light stays on after motion stops</description>
|
||||
<description><![CDATA[
|
||||
Amount of time the light stays on after motion stops<br /> <h1>Overview</h1><p>0=Test(5S)</p><p>1=1 minute</p><p>5=5 minutes</p><p>15=15 minutes</p><p>30=30 minutes</p><p>-1=Disable timeout</p>
|
||||
]]></description>
|
||||
<default>5</default>
|
||||
<options>
|
||||
<option value="-1">Disable timeout</option>
|
||||
<option value="0">Test (5s)</option>
|
||||
<option value="1">1 minute</option>
|
||||
<option value="5">5 minutes</option>
|
||||
<option value="15">15 minutes</option>
|
||||
<option value="30">30 minutes</option>
|
||||
<option value="255">Disable timeout</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration">
|
||||
|
|
|
@ -0,0 +1,122 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="zwave"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0
|
||||
https://openhab.org/schemas/thing-description/v1.0.0">
|
||||
|
||||
<thing-type id="inteset_MC-V12.4_00_000" listed="false">
|
||||
<label>Inteset Door Sensor Door Sensor</label>
|
||||
<description><![CDATA[
|
||||
Door Sensor<br /> <h1>Overview</h1><p>The NEO Coolcam Door/Window Sensor provides information whether a door or window is opened or closed.<br />The battery operated sensor consits of the main unit and a magnetic element. The main unit should be installed on the frame and the magnetic element is placed on the door or window.</p> <p>Technical parameters:</p> <ul><li>Power: CR14250 x1</li> <li>Standby current: 1uA</li> <li>Battery life: 10 years</li> <li>Radio Protocol: Z-wave</li> <li>Radio Frequency: 868.4MHz EU; 908.4MHz US; 921.4MHz ANZ; 869.2MHz RU</li> <li>Wireless distance:50m</li> <li>Operation temperature: 0-40℃</li> <li>Storage temperature: 0-60℃</li> <li>Size: Contact sensor main body (L x W x H): 70mmx20mmx20mm Contact sensor deputy body (L x W x H): 40mmx11mmx11mm</li> </ul> <br /> <h2>Inclusion Information</h2><ol><li>Remove the sensor cover.</li> <li>Make sure the sensor is powered.</li> <li>Set Z‐Wave controller or Z‐Wave gateway into inclusion mode (Refer to the controller or gateway operating manual)</li> <li>Press the button three times within 1.5 second, the device will enter inclusion mode. And the LED will flash on and off alternately five times.</li> </ol> <br /> <h2>Exclusion Information</h2><ol><li>Remove the sensor cover.</li> <li>Make sure the sensor is powered.</li> <li>Set Z‐Wave controller or Z‐Wave gateway into inclusion mode (Refer to the controller or gateway operating manual)</li> <li>Press the button three times within 1.5 second, the device will enter inclusion mode. And the LED will flash on and off alternately five times.</li> </ol> <br /> <h2>Wakeup Information</h2><p>Press the button once to wake the device. If pressed successfully, the LED will blink one time.</p> <ul><li>The minimum wakeup interval is 300s (5 minutes)</li> <li>The maximum wakeup interval is 16,777,200s (about 194 days)</li> <li>Allowable min step among each wakeup interval is 60 seconds, such as 360s, 420s, 480s…</li> <li>Note: The default value is 12 hours. This value is longer, the battery life is greater.</li> </ul>
|
||||
]]></description>
|
||||
<category>Battery</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
<channel id="sensor_binary" typeId="sensor_binary">
|
||||
<label>Binary Sensor</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_SENSOR_BINARY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_access" typeId="alarm_access">
|
||||
<label>Alarm (access)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=ACCESS_CONTROL</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="battery-level" typeId="system.battery-level">
|
||||
<properties>
|
||||
<property name="binding:*:PercentType">COMMAND_CLASS_BATTERY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
<!-- DEVICE PROPERTY DEFINITIONS -->
|
||||
<properties>
|
||||
<property name="vendor">Inteset Technologies,</property>
|
||||
<property name="modelId">Inteset Door Sensor</property>
|
||||
<property name="manufacturerId">039A</property>
|
||||
<property name="manufacturerRef">0003:0101</property>
|
||||
<property name="dbReference">1471</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
<config-description>
|
||||
|
||||
<!-- GROUP DEFINITIONS -->
|
||||
<parameter-group name="configuration">
|
||||
<context>setup</context>
|
||||
<label>Configuration Parameters</label>
|
||||
</parameter-group>
|
||||
|
||||
<parameter-group name="association">
|
||||
<context>link</context>
|
||||
<label>Association Groups</label>
|
||||
</parameter-group>
|
||||
|
||||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_1_2" type="integer" groupName="configuration">
|
||||
<label>1: ON/OFF Delay</label>
|
||||
<description><![CDATA[
|
||||
Delay before the OFF command is transmitted<br /> <h1>Overview</h1><p>Adjust the delay before the OFF command is transmitted. 0 means send OFF command immediately.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration">
|
||||
<label>2: Basic Set Level</label>
|
||||
<description><![CDATA[
|
||||
Basic Set Command sent when door/window is opened or closed<br /> <h1>Overview</h1><p>Basic Set Command will be sent when the door/window is opened or closed, the receiver will take it for consideration; for instance, if a lamp module received the BSC of which value is decisive as to how bright of dim level of lamp module shall be.</p> <p>Available Settings:</p> <ul><li>0 - Off, Alarm cancelling or turning a device OFF</li> <li>1 - 99 or 255 – ON (Binary Switch Device)</li> <li>Dim Level (Multilevel Switch Device)</li> </ul>
|
||||
]]></description>
|
||||
<default>-1</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<description><![CDATA[
|
||||
Is assigned to the device status - OPEN/CLOSED.<br /> <h1>Overview</h1><p>It enables the sensor to send reports and readings to Z-Wave Controller or Z-Wave Gateway whenever the sensor is triggered.</p> <ul> <li>NOTIFICATION_REPORT</li> <li>BATTERY_REPORT</li> <li>SENSOR_BINARY_REPORT</li> <li>DEVICE_RESET_LOCALLY_NOTIFICATION</li> </ul>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Group 2</label>
|
||||
<description><![CDATA[
|
||||
Sending control commands to associated devices. This association group is configured through the advanced parameters no. 1 and 2.<br /> <h1>Overview</h1><p>BASIC_SET</p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_3" type="text" groupName="association" multiple="true">
|
||||
<label>3: Group 3</label>
|
||||
<description><![CDATA[
|
||||
Send Notification to associated devices.<br /> <h1>Overview</h1><p>NOTIFICATION_REPORT</p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_4" type="text" groupName="association" multiple="true">
|
||||
<label>4: Group 4</label>
|
||||
<description><![CDATA[
|
||||
Send Notification to associated devices.<br /> <h1>Overview</h1><p>SENSOR_BINARY_REPORT</p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -0,0 +1,478 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="zwave"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0
|
||||
https://openhab.org/schemas/thing-description/v1.0.0">
|
||||
|
||||
<thing-type id="mcohome_mhs513_05_000" listed="false">
|
||||
<label>MH-S513 Touch Panel Switch 3-Way</label>
|
||||
<description><![CDATA[
|
||||
Touch Panel Switch 3-Way<br /> <h1>Overview</h1><p>Touch Panel Switch is a wall panel built-in with Z-Wave Plus module. With its stylish design and stable performance, the panel can be used to control house-hold electrical appliances like lamp, motor, coffee machine, TV set etc. It supports basic command class, multi channel command class and multi channel association command class, also works as a repeater in a Z-Wave network.<br /></p><p>This product can be included and operated in any Z-Wave network with other Z-Wave certified devices from any other manufacturers.</p> <br /> <h2>Inclusion Information</h2><p>ADD the device into Z-Wave network:</p><p> Set controller into ADD mode. Follow instructions provided by controller manufacturer.</p><p> Press and hold any key on the panel for 8 seconds or 3 clicks in quick succession.</p><p>Note: If the ADD is successful, all INDICATION LEDs on the panel will flash 4 times.</p> <br /> <h2>Exclusion Information</h2><p>REMOVE the device from Z-Wave network:</p><p> Set controller into REMOVE mode. Follow instructions provided by controller manufacturer.</p><p> Press and hold any key on the panel for 8 seconds or 3 clicks in quick succession.</p><p>Note: If the REMOVE is successful, all INDICATION LEDs on the panel will flash 4 times. The REMOVE will delete all association data.</p> <br /> <h2>Wakeup Information</h2><p><br /></p><p><br /></p>
|
||||
]]></description>
|
||||
<category>WallSwitch</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
<channel id="switch_dimmer" typeId="switch_dimmer">
|
||||
<label>Dimmer</label>
|
||||
<properties>
|
||||
<property name="binding:*:PercentType">COMMAND_CLASS_SWITCH_MULTILEVEL</property>
|
||||
<property name="binding:Command:OnOffType">COMMAND_CLASS_SWITCH_MULTILEVEL</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="scene_number" typeId="scene_number">
|
||||
<label>Scene Number</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_CENTRAL_SCENE</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_binary1" typeId="switch_binary">
|
||||
<label>Switch 1</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_SWITCH_BINARY:1</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="switch_binary2" typeId="switch_binary">
|
||||
<label>Switch 2</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_SWITCH_BINARY:2</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
<!-- DEVICE PROPERTY DEFINITIONS -->
|
||||
<properties>
|
||||
<property name="vendor">McoHome Technology Co., Ltd</property>
|
||||
<property name="modelId">MH-S513</property>
|
||||
<property name="manufacturerId">015F</property>
|
||||
<property name="manufacturerRef">5131:5103</property>
|
||||
<property name="versionMin">5.0</property>
|
||||
<property name="dbReference">1307</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
<config-description>
|
||||
|
||||
<!-- GROUP DEFINITIONS -->
|
||||
<parameter-group name="configuration">
|
||||
<context>setup</context>
|
||||
<label>Configuration Parameters</label>
|
||||
</parameter-group>
|
||||
|
||||
<parameter-group name="association">
|
||||
<context>link</context>
|
||||
<label>Association Groups</label>
|
||||
</parameter-group>
|
||||
|
||||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_2_1" type="integer" groupName="configuration">
|
||||
<label>2: Save switch state on power failure</label>
|
||||
<description><![CDATA[
|
||||
Save switch state on power failure<br /> <h1>Overview</h1><p>0: Switch state not saved, switch will be off when power is restored.<br />1: Switch state is saved, switch will be back to the same state when power is restored.</p>
|
||||
]]></description>
|
||||
<default>1</default>
|
||||
<options>
|
||||
<option value="0">Switch state not saved</option>
|
||||
<option value="1">Switch state is saved</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<label>3: ALL ON / ALL OFF</label>
|
||||
<description><![CDATA[
|
||||
Allow all on/off control<br /> <h1>Overview</h1><p>0: forbid ALL ON, forbid ALL OFF<br />1: forbid ALL ON, allow ALL OFF<br />2: allow ALL ON, forbid ALL OFF<br />255: allow ALL ON, allow ALL OFF</p>
|
||||
]]></description>
|
||||
<default>-1</default>
|
||||
<options>
|
||||
<option value="0">Forbid All ON/OFF</option>
|
||||
<option value="1">Forbid All ON. Allow ALL OFF</option>
|
||||
<option value="2">Allow ALL ON. Forbid ALL OFF</option>
|
||||
<option value="255">Allow ALL ON. Allow ALL OFF</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<label>4: LED backlight brightness level</label>
|
||||
<description><![CDATA[
|
||||
LED backlight brightness level<br /> <h1>Overview</h1><p>0: LED lighting disabled<br />1 ~ 10: Minimum to Maximum brightness<br />11 ~ 255: Same as 10 (Maximum)</p>
|
||||
]]></description>
|
||||
<default>10</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration">
|
||||
<label>5: Switch 0 Key Mode</label>
|
||||
<description><![CDATA[
|
||||
Switch 0 Key Mode<br /> <h1>Overview</h1><p>0: single click to switch on/off status<br />1: Key default as off state. When it is turned on, then it will be turned off automatically after a time period, which can be set in Parameter 6<br />2: Key default as on state. When it is turned off, then it will be turned on automatically after a time period, which can be set in Parameter 6<br />3: hold >3s then key is on, and off once released<br />4: single click to switch on/off status + hold >3s then key is on, and off once released<br />5: Hold continuously then key is on, and off once released<br />6: When key is on, hold >3s then key is off and will keep off status after released; When key is off, hold >3s then key is on and will stay on status after released.</p> <p><strong>IMPORTANT NOTE: </strong>When key mode is 0x03 or 0x04, pressing for 8 seconds will NOT ADD/REMOVE from the network. You must use 3 clicks in quick succession, or change to another option if possible before removing.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">On/Off function</option>
|
||||
<option value="1">Off Timer mode</option>
|
||||
<option value="2">On Timer mode</option>
|
||||
<option value="3">Delayed On momentary</option>
|
||||
<option value="4">On/Off and Delayed On momentary</option>
|
||||
<option value="5">Hold On momentary</option>
|
||||
<option value="6">Delayed On/Off</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_2" type="integer" groupName="configuration">
|
||||
<label>6: Key timer duration</label>
|
||||
<description><![CDATA[
|
||||
Key timer duration<br /> <h1>Overview</h1><p>0: infinite (always on, or always off, when pressed)<br />1 ~ 65535: time in seconds until returning to the default state as per Parameter 5</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_7_1" type="integer" groupName="configuration">
|
||||
<label>7: External Switch Type</label>
|
||||
<description><![CDATA[
|
||||
External Switch Type<br /> <h1>Overview</h1><p>0: Button (Momentary buttons)<br />1: Toggle (2-state switches)</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Button (Momentary buttons)</option>
|
||||
<option value="1">Toggle (2-state switches)</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_8_1" type="integer" groupName="configuration">
|
||||
<label>8: Basic CC integration setting</label>
|
||||
<description><![CDATA[
|
||||
Basic CC integration setting<br /> <h1>Overview</h1><p>0: "Basic Set" received, key 1 responds; "Basic Get" received, key 1 sends "Basic Report"; key 1 will not send unsolicited "Basic Report"(No Endpoint)to LifeLine Association<br />1: "Basic Set" received, key 1 responds; "Basic Get" received,key 1 sends "Basic Report"; key 1 will send unsolicited "Basic Report"(No Endpoint)to LifeLine Association<br />2: "Basic Set" received, all keys respond; "Basic Get" received, not reply "Basic Report"; All keys will not send unsolicited "Basic Report"(No Endpoint)to LifeLine Association<br />3: "Basic Set" received, all keys respond; "Basic Get" received, key 1 sends "Basic Report"; All keys will not send unsolicited "Basic Report"(No Endpoint)to LifeLine Association</p> <p>This parameter works for integration with different gateways/systems. If do not know how to use, please keep as default.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Key 1 No report</option>
|
||||
<option value="1">Key 1 report</option>
|
||||
<option value="2">All Keys no reply</option>
|
||||
<option value="3">Key 1 report only</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_9_1" type="integer" groupName="configuration">
|
||||
<label>9: External switch to control specific load</label>
|
||||
<description><![CDATA[
|
||||
External switch to control specific load<br /> <h1>Overview</h1><p>0: Disabled<br />1: Load 1<br />2: Load 2<br />3: Load 1 and Load 2</p> <p>Optional for MH-S511 and MH-S512</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Disabled</option>
|
||||
<option value="1">Load 1</option>
|
||||
<option value="2">Load 2</option>
|
||||
<option value="3">Load 1 and Load 2</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_10_1" type="integer" groupName="configuration">
|
||||
<label>10: Switch 1 Key Mode</label>
|
||||
<description><![CDATA[
|
||||
Switch 1 Key Mode<br /> <h1>Overview</h1><p>0: single click to switch on/off status<br />1: Key default as off state. When it is turned on, then it will be turned off automatically after a time period, which can be set in Parameter 6<br />2: Key default as on state. When it is turned off, then it will be turned on automatically after a time period, which can be set in Parameter 6<br />3: hold >3s then key is on, and off once released<br />4: single click to switch on/off status + hold >3s then key is on, and off once released<br />5: Hold continuously then key is on, and off once released<br />6: When key is on, hold >3s then key is off and will keep off status after released; When key is off, hold >3s then key is on and will stay on status after released.</p> <p><strong>IMPORTANT NOTE: </strong>When key mode is 0x03 or 0x04, pressing for 8 seconds will NOT ADD/REMOVE from the network. You must use 3 clicks in quick succession, or change to another option if possible before removing.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">On/Off function</option>
|
||||
<option value="1">Off Timer mode</option>
|
||||
<option value="2">On Timer mode</option>
|
||||
<option value="3">Delayed On momentary</option>
|
||||
<option value="4">On/Off and Delayed On momentary</option>
|
||||
<option value="5">Hold On momentary</option>
|
||||
<option value="6">Delayed On/Off</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_1" type="integer" groupName="configuration">
|
||||
<label>11: Switch 2 Key Mode</label>
|
||||
<description><![CDATA[
|
||||
Switch 2 Key Mode<br /> <h1>Overview</h1><p>0: single click to switch on/off status<br />1: Key default as off state. When it is turned on, then it will be turned off automatically after a time period, which can be set in Parameter 6<br />2: Key default as on state. When it is turned off, then it will be turned on automatically after a time period, which can be set in Parameter 6<br />3: hold >3s then key is on, and off once released<br />4: single click to switch on/off status + hold >3s then key is on, and off once released<br />5: Hold continuously then key is on, and off once released<br />6: When key is on, hold >3s then key is off and will keep off status after released; When key is off, hold >3s then key is on and will stay on status after released.</p> <p><strong>IMPORTANT NOTE: </strong>When key mode is 0x03 or 0x04, pressing for 8 seconds will NOT ADD/REMOVE from the network. You must use 3 clicks in quick succession, or change to another option if possible before removing.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">On/Off function</option>
|
||||
<option value="1">Off Timer mode</option>
|
||||
<option value="2">On Timer mode</option>
|
||||
<option value="3">Delayed On momentary</option>
|
||||
<option value="4">On/Off and Delayed On momentary</option>
|
||||
<option value="5">Hold On momentary</option>
|
||||
<option value="6">Delayed On/Off</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_1" type="integer" groupName="configuration">
|
||||
<label>12: Switch 3 Key Mode</label>
|
||||
<description><![CDATA[
|
||||
Switch 3 Key Mode<br /> <h1>Overview</h1><p>0: single click to switch on/off status</p><p>1: Key default as off state. When it is turned on, then it will be turned off automatically after a time period, which can be set in Parameter 6</p><p>2: Key default as on state. When it is turned off, then it will be turned on automatically after a time period, which can be set in Parameter 6<br /></p><p>3: hold >3s then key is on, and off once released</p><p>4: single click to switch on/off status + hold >3s then key is on, and off once released</p><p>5: Hold continuously then key is on, and off once released</p><p>6: When key is on, hold >3s then key is off and will keep off status after released; When key is off, hold >3s then key is on and will on status after released.</p> <p><strong>IMPORTANT NOTE: </strong>When key mode is 0x03 or 0x04, pressing for 8 seconds will NOT ADD/REMOVE from the network. You must use 3 clicks in quick succession, or change to another option if possible before removing.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">On/Off function</option>
|
||||
<option value="1">Off Timer mode</option>
|
||||
<option value="2">On Timer mode</option>
|
||||
<option value="3">Delayed On momentary</option>
|
||||
<option value="4">On/Off and Delayed On momentary</option>
|
||||
<option value="5">Hold On momentary</option>
|
||||
<option value="6">Delayed On/Off</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_14_1" type="integer" groupName="configuration">
|
||||
<label>14: Key lock local</label>
|
||||
<description><![CDATA[
|
||||
Key lock function (Manually)<br /> <h1>Overview</h1><p>This prevents or allows the local touch buttons to work.</p> <p>0: All keys unlocked<br />1: Key 1 locked<br />2: Key 2 locked<br />3: Keys 1 & 2 locked<br />4: Key 3 locked - N/A<br />5: Keys 1 & 3 locked - N/A<br />6: Keys 2 & 3 locked - N/A<br />7: Keys 1 & 2 & 3 locked - N/A</p> <p><strong>Binary bit locations determine which keys are locked.</strong><br />BIT0: =1 Key 1 locked, operation disabled; =0 Key 1 not locked;<br />BIT1: =1 Key 2 locked, operation disabled; =0 Key 2 not locked;<br />BIT2: =1 Key 3 locked, operation disabled; =0 Key 3 not locked;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are locked.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_15_1" type="integer" groupName="configuration">
|
||||
<label>15: Key lock remote</label>
|
||||
<description><![CDATA[
|
||||
Key lock function (Wirelessly)<br /> <h1>Overview</h1><p>This prevents or allows the local touch buttons to work.</p> <p>0: All keys unlocked<br />1: Key 1 locked<br />2: Key 2 locked<br />3: Keys 1 & 2 locked<br />4: Key 3 locked - N/A<br />5: Keys 1 & 3 locked - N/A<br />6: Keys 2 & 3 locked - N/A<br />7: Keys 1 & 2 & 3 locked - N/A</p> <p><strong>Binary bit locations determine which keys are locked.</strong><br />BIT0: =1 Key 1 locked, operation disabled; =0 Key 1 not locked;<br />BIT1: =1 Key 2 locked, operation disabled; =0 Key 2 not locked;<br />BIT2: =1 Key 3 locked, operation disabled; =0 Key 3 not locked;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are locked.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_16_1" type="integer" groupName="configuration">
|
||||
<label>16: Scene respond</label>
|
||||
<description><![CDATA[
|
||||
Scene respond<br /> <h1>Overview</h1><p>0: Scene respond disabled<br />1: Key 1 respond<br />2: Key 2 respond<br />3: Keys 1 & 2 respond<br />4: Key 3 respond - N/A<br />5: Keys 1 & 3 respond - N/A<br />6: Keys 2 & 3 respond - N/A<br />7: Keys 1 & 2 & 3 respond - N/A</p> <p><strong>Binary bit locations determine which keys will respond.</strong><br />Bit0: =1 Key1 respond scene =0 Key1 not respond scene<br />Bit1: =1 Key2 respond scene =0 Key2 not respond scene<br />Bit2: =1 Key3 respond scene =0 Key3 not respond scene<br />Bit7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 will respond.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_17_1" type="integer" groupName="configuration">
|
||||
<label>17: Key 1 Scene Mode</label>
|
||||
<description><![CDATA[
|
||||
Key 1 Scene Activate Mode Setting<br /> <h1>Overview</h1><p>0: Scene activate function disabled<br />1: One click key1, always activate scene ID1 no matter what the status of key1 is<br />2: One click key1, only activate scene ID1 when key1's relay output is open<br />3: One click key1, only activate scene ID1 when key1's relay output is closed</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Scene activate function disabled</option>
|
||||
<option value="1">Always Activate Scene</option>
|
||||
<option value="2">Activate only when off</option>
|
||||
<option value="3">Activate only when on</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_18_1" type="integer" groupName="configuration">
|
||||
<label>18: Key 1 Activate Scene ID</label>
|
||||
<description><![CDATA[
|
||||
Key 1 Activate Scene ID<br /> <h1>Overview</h1><p>0: Scene ID is invalid and will not send scene activate command (scene disabled)<br />1 ~ 255: Scene ID</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_19_1" type="integer" groupName="configuration">
|
||||
<label>19: Key 1 Activate Scene Duration</label>
|
||||
<description><![CDATA[
|
||||
Key 1 Activate Scene Duration<br /> <h1>Overview</h1><p>0: Instantly<br />1 ~ 127: Specify dimming duration from 1 second (0x01) to 127 seconds (0x7F) in 1-second resolution<br />128 ~ 254: Specify dimming duration from 1 minute (0x80(128)) to 127 minutes (0xFE(254)) in 1-minute resolution</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_20_1" type="integer" groupName="configuration">
|
||||
<label>20: Key 2 Scene Mode</label>
|
||||
<description><![CDATA[
|
||||
Key 2 Scene Mode<br /> <h1>Overview</h1><p>0: Scene activate function disabled<br />1: One click key2, always activate scene ID1 no matter what the status of key2 is<br />2: One click key2, only activate scene ID1 when key2's relay output is open<br />3: One click key2, only activate scene ID1 when key2's relay output is closed</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Scene activate function disabled</option>
|
||||
<option value="1">Always Activate Scene</option>
|
||||
<option value="2">Activate only when off</option>
|
||||
<option value="3">Activate only when on</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_21_1" type="integer" groupName="configuration">
|
||||
<label>21: Key 2 Activate Scene ID</label>
|
||||
<description><![CDATA[
|
||||
Key 2 Activate Scene ID<br /> <h1>Overview</h1><p>0: Scene ID is invalid and will not send scene activate command (scene disabled)<br />1 ~ 255: Scene ID</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_22_1" type="integer" groupName="configuration">
|
||||
<label>22: Key 2 Activate Scene Duration</label>
|
||||
<description><![CDATA[
|
||||
Key 2 Activate Scene Duration<br /> <h1>Overview</h1><p>0: Instantly<br />1 ~ 127: Specify dimming duration from 1 second (0x01) to 127 seconds (0x7F) in 1-second resolution<br />128 ~ 254: Specify dimming duration from 1 minute (0x80(128)) to 127 minutes (0xFE(254)) in 1-minute resolution</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_23_1" type="integer" groupName="configuration">
|
||||
<label>23: Key 3 Scene Mode</label>
|
||||
<description><![CDATA[
|
||||
Key 3 Scene Mode<br /> <h1>Overview</h1><p>0: Scene activate function disabled<br /></p><p>1: One click key3, always activate scene ID1 no matter what the status of key3 is<br />2: One click key3, only activate scene ID1 when key3's relay output is open<br />3: One click key3, only activate scene ID1 when key3's relay output is closed</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Scene activate function disabled</option>
|
||||
<option value="1">Always Activate Scene</option>
|
||||
<option value="2">Activate only when off</option>
|
||||
<option value="3">Activate only when on</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_24_1" type="integer" groupName="configuration">
|
||||
<label>24: Key 3 Activate Scene ID</label>
|
||||
<description><![CDATA[
|
||||
Key 3 Activate Scene ID<br /> <h1>Overview</h1><p>0: Scene ID is invalid and will not send scene activate command (scene disabled)<br /></p><p>1 ~ 255: Scene ID</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_25_1" type="integer" groupName="configuration">
|
||||
<label>25: Key 3 Activate Scene Duration</label>
|
||||
<description><![CDATA[
|
||||
Key 3 Activate Scene Duration<br /> <h1>Overview</h1><p>0: Instantly<br /></p><p>1 ~ 127: Specify dimming duration from 1 second (0x01) to 127 seconds (0x7F) in 1-second resolution<br />128 ~ 254: Specify dimming duration from 1 minute (0x80(128)) to 127 minutes (0xFE(254)) in 1-minute resolution</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_31_1" type="integer" groupName="configuration">
|
||||
<label>31: Central scene settings</label>
|
||||
<description><![CDATA[
|
||||
Central scene settings<br /> <h1>Overview</h1><p>This enables the central scene function for each button.</p> <p>0: All keys disabled<br />1: Key 1 enabled<br />2: Key 2 enabled<br />3: Keys 1 & 2 enabled<br />4: Key 3 enabled - N/A<br />5: Keys 1 & 3 enabled - N/A<br />6: Keys 2 & 3 enabled - N/A<br />7: Keys 1 & 2 & 3 enabled - N/A</p> <p><strong>Binary bit locations determine which keys are enabled.</strong><br />BIT0: =1 Key 1 disabled; =0 Key 1 enabled;<br />BIT1: =1 Key 2 disabled; =0 Key 2 enabled;<br />BIT2: =1 Key 3 disabled; =0 Key 3 enabled;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are enabled.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_32_1" type="integer" groupName="configuration">
|
||||
<label>32: Scene respond ID 1-50</label>
|
||||
<description><![CDATA[
|
||||
Scene respond ID 1-50<br /> <h1>Overview</h1><p>This enables the scene function for each button. Scene ID 1 - 50</p> <p>0: All keys disabled<br />1: Key 1 enabled<br />2: Key 2 enabled<br />3: Keys 1 & 2 enabled<br />4: Key 3 enabled - N/A<br />5: Keys 1 & 3 enabled - N/A<br />6: Keys 2 & 3 enabled - N/A<br />7: Keys 1 & 2 & 3 enabled - N/A</p> <p><strong>Binary bit locations determine which keys are enabled.</strong><br />BIT0: =1 Key 1 disabled; =0 Key 1 enabled;<br />BIT1: =1 Key 2 disabled; =0 Key 2 enabled;<br />BIT2: =1 Key 3 disabled; =0 Key 3 enabled;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are enabled.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_33_1" type="integer" groupName="configuration">
|
||||
<label>33: Scene respond ID 51-100</label>
|
||||
<description><![CDATA[
|
||||
Scene respond ID 51-100<br /> <h1>Overview</h1><p>This enables the scene function for each button. Scene ID 51 - 100</p> <p>0: All keys disabled<br />1: Key 1 enabled<br />2: Key 2 enabled<br />3: Keys 1 & 2 enabled<br />4: Key 3 enabled - N/A<br />5: Keys 1 & 3 enabled - N/A<br />6: Keys 2 & 3 enabled - N/A<br />7: Keys 1 & 2 & 3 enabled - N/A</p> <p><strong>Binary bit locations determine which keys are enabled.</strong><br />BIT0: =1 Key 1 disabled; =0 Key 1 enabled;<br />BIT1: =1 Key 2 disabled; =0 Key 2 enabled;<br />BIT2: =1 Key 3 disabled; =0 Key 3 enabled;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are enabled.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_34_1" type="integer" groupName="configuration">
|
||||
<label>34: Scene respond ID 101-150</label>
|
||||
<description><![CDATA[
|
||||
Scene respond ID 101-150<br /> <h1>Overview</h1><p>This enables the scene function for each button. Scene ID 51 - 100</p> <p>0: All keys disabled<br />1: Key 1 enabled<br />2: Key 2 enabled<br />3: Keys 1 & 2 enabled<br />4: Key 3 enabled - N/A<br />5: Keys 1 & 3 enabled - N/A<br />6: Keys 2 & 3 enabled - N/A<br />7: Keys 1 & 2 & 3 enabled - N/A</p> <p><strong>Binary bit locations determine which keys are enabled.</strong><br />BIT0: =1 Key 1 disabled; =0 Key 1 enabled;<br />BIT1: =1 Key 2 disabled; =0 Key 2 enabled;<br />BIT2: =1 Key 3 disabled; =0 Key 3 enabled;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are enabled.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_35_1" type="integer" groupName="configuration">
|
||||
<label>35: Scene respond ID 151-200</label>
|
||||
<description><![CDATA[
|
||||
Scene respond ID 151-200<br /> <h1>Overview</h1><p>This enables the scene function for each button. Scene ID 151 - 200</p> <p>0: All keys disabled<br />1: Key 1 enabled<br />2: Key 2 enabled<br />3: Keys 1 & 2 enabled<br />4: Key 3 enabled - N/A<br />5: Keys 1 & 3 enabled - N/A<br />6: Keys 2 & 3 enabled - N/A<br />7: Keys 1 & 2 & 3 enabled - N/A</p> <p><strong>Binary bit locations determine which keys are enabled.</strong><br />BIT0: =1 Key 1 disabled; =0 Key 1 enabled;<br />BIT1: =1 Key 2 disabled; =0 Key 2 enabled;<br />BIT2: =1 Key 3 disabled; =0 Key 3 enabled;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are enabled.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_36_1_wo" type="integer" groupName="configuration">
|
||||
<label>36: Scene respond ID 201-250</label>
|
||||
<description><![CDATA[
|
||||
Scene respond ID 201-250<br /> <h1>Overview</h1><p>This enables the scene function for each button. Scene ID 201 - 250</p> <p>0: All keys disabled<br />1: Key 1 enabled<br />2: Key 2 enabled<br />3: Keys 1 & 2 enabled<br />4: Key 3 enabled - N/A<br />5: Keys 1 & 3 enabled - N/A<br />6: Keys 2 & 3 enabled - N/A<br />7: Keys 1 & 2 & 3 enabled - N/A</p> <p><strong>Binary bit locations determine which keys are enabled.</strong><br />BIT0: =1 Key 1 disabled; =0 Key 1 enabled;<br />BIT1: =1 Key 2 disabled; =0 Key 2 enabled;<br />BIT2: =1 Key 3 disabled; =0 Key 3 enabled;<br />BIT7: Reserved</p> <p>E.g. 0x05 (00000101) From right to left Bit 0 and 2 are on so Key 1 and 3 are enabled.</p> <p><strong>NOTE:</strong> Key 3 only on MH-S513.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_255_1_wo" type="integer" groupName="configuration">
|
||||
<label>255: Factory Setting</label>
|
||||
<description><![CDATA[
|
||||
restore factory defaults<br /> <h1>Overview</h1><p><strong>Factory Reset.</strong></p> <p>255: Factory reset switch.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Normal</option>
|
||||
<option value="255">Factory Reset</option>
|
||||
</options>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<multipleLimit>1</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Associate with Key 1</label>
|
||||
<description><![CDATA[
|
||||
Associate with Key 1<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_5" type="text" groupName="association" multiple="true">
|
||||
<label>5: Associate with Key 2 if any</label>
|
||||
<description>Associate with Key 2 if any</description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_8" type="text" groupName="association" multiple="true">
|
||||
<label>8: Associate with Key 3 if any</label>
|
||||
<description>Associate with Key 3 if any</description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -8,7 +8,7 @@
|
|||
<thing-type id="nodon_msp31x1_00_000" listed="false">
|
||||
<label>MSP-3-1-X1 Z-Wave Plus Micro Smart Plug ON/OFF</label>
|
||||
<description><![CDATA[
|
||||
Z-Wave Plus Micro Smart Plug ON/OFF<br /> <h1>Overview</h1><p>The NodOn Micro Smart Plug can be controlled by any kind of Z-Wave® (or Z-Wave Plus®) gateway or other Z-Wave® controller (standalone mode) such as the NodOn® Soft Remote or Octan Remote. <br />It existed in both standard, Type E (French) or Schuko (German). Its very small design and volume allow easy integration, without obstructing nearby power holes on a power strip. Furthermore, it can perform Power and Energy Metering. <br />The NodOn Smart Plug is based on brand new 500 series Z-Wave® module from Sigma Designs®, and support all the new features of Z-Wave Plus® standard: <br />Longer range (up to 40m), lower power consumption, higher data rate transmission, and many more new features.</p> <br /> <h2>Inclusion Information</h2><p>To include/add to the Z-Wave network, long press during 2 seconds to send several NIF during 30 seconds or a triple press to send a single NIF </p> <br /> <h2>Exclusion Information</h2><p>To exclude/remove from the Z-Wave network, long press during 2 seconds to send several NIF during 30 seconds or a triple press to send a single NIF </p>
|
||||
Z-Wave Plus Micro Smart Plug ON/OFF<br /> <h1>Overview</h1><p>The NodOn Micro Smart Plug can be controlled by any kind of Z-Wave® (or Z-Wave Plus®) gateway or other Z-Wave® controller (standalone mode) such as the NodOn® Soft Remote or Octan Remote.</p><p>It existed in both standard, Type E (French) or Schuko (German). Its very small design and volume allow easy integration, without obstructing nearby power holes on a power strip. Furthermore, it can perform Power and Energy Metering. <br />The NodOn Smart Plug is based on brand new 500 series Z-Wave® module from Sigma Designs®, and support all the new features of Z-Wave Plus® standard: <br />Longer range (up to 40m), lower power consumption, higher data rate transmission, and many more new features.</p> <br /> <h2>Inclusion Information</h2><p>To include/add to the Z-Wave network, long press during 2 seconds to send several NIF during 30 seconds or a triple press to send a single NIF </p> <br /> <h2>Exclusion Information</h2><p>To exclude/remove from the Z-Wave network, long press during 2 seconds to send several NIF during 30 seconds or a triple press to send a single NIF </p> <br /> <h2>Wakeup Information</h2><p><br /></p>
|
||||
]]></description>
|
||||
<category>PowerOutlet</category>
|
||||
|
||||
|
@ -191,10 +191,12 @@ Reporting intervall for power and energy to lifeline.<br /> <h1>Overview</h1><p>
|
|||
<default>3600</default>
|
||||
<options>
|
||||
<option value="0">Metering Pulse disable</option>
|
||||
<option value="900">Enable and send report every 15 minutes</option>
|
||||
<option value="3600">Metering Pulse enable and send report every hour</option>
|
||||
<option value="21600">Enable and send report every 6 hours</option>
|
||||
<option value="43200">Enable and send report every 12 hours</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_25_2" type="integer" groupName="configuration">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<thing-type id="shenzhen_nasds01z_00_000" listed="false">
|
||||
<label>NAS-DS01Z Door/Window Sensor</label>
|
||||
<description><![CDATA[
|
||||
Door/Window Sensor<br /> <h1>Overview</h1><p>The NEO Coolcam Door/Window Sensor provides information whether a door or window is opened or closed.<br />The battery operated sensor consits of the main unit and a magnetic element. The main unit should be installed on the frame and the magnetic element is placed on the door or window.</p> <p>Technical parameters:</p> <ul><li>Power: CR14250 x1</li> <li>Standby current: 1uA</li> <li>Battery life: 10 years</li> <li>Radio Protocol: Z-wave</li> <li>Radio Frequency: 868.4MHz EU; 908.4MHz US; 921.4MHz ANZ; 869.2MHz RU</li> <li>Wireless distance:50m</li> <li>Operation temperature: 0-40℃</li> <li>Storage temperature: 0-60℃</li> <li>Size: Contact sensor main body (L x W x H): 70mmx20mmx20mm Contact sensor deputy body (L x W x H): 40mmx11mmx11mm</li> </ul> <br /> <h2>Inclusion Information</h2><ol><li>Remove the sensor cover.</li> <li>Make sure the sensor is powered.</li> <li>Set Z‐Wave controller or Z‐Wave gateway into inclusion mode (Refer to the controller or gateway operating manual)</li> <li>Press the button three times within 1.5 second, the device will enter inclusion mode. And the LED will flash on and off alternately five times.</li> </ol> <br /> <h2>Exclusion Information</h2><ol><li>Remove the device cover.</li> <li>Make sure the sensor is powered.</li> <li>Set Z‐Wave controller or Z‐Wave gateway into exclusion mode (Refer to the controller or gateway operating manual)</li> <li>Press the button three times within 1.5 second, the device will enter exclusion mode.</li> </ol> <br /> <h2>Wakeup Information</h2><p>Press the button once to wake the device. If pressed successfully, the LED will blink one time.</p> <ul><li>The minimum wakeup interval is 300s (5 minutes)</li> <li>The maximum wakeup interval is 16,777,200s (about 194 days)</li> <li>Allowable min step among each wakeup interval is 60 seconds, such as 360s, 420s, 480s…</li> <li>Note: The default value is 12 hours. This value is longer, the battery life is greater.</li> </ul>
|
||||
Door/Window Sensor<br /> <h1>Overview</h1><p>The NEO Coolcam Door/Window Sensor provides information whether a door or window is opened or closed.<br />The battery operated sensor consits of the main unit and a magnetic element. The main unit should be installed on the frame and the magnetic element is placed on the door or window.</p> <p>Technical parameters:</p> <ul><li>Power: CR14250 x1</li> <li>Standby current: 1uA</li> <li>Battery life: 10 years</li> <li>Radio Protocol: Z-wave</li> <li>Radio Frequency: 868.4MHz EU; 908.4MHz US; 921.4MHz ANZ; 869.2MHz RU</li> <li>Wireless distance:50m</li> <li>Operation temperature: 0-40℃</li> <li>Storage temperature: 0-60℃</li> <li>Size: Contact sensor main body (L x W x H): 70mmx20mmx20mm Contact sensor deputy body (L x W x H): 40mmx11mmx11mm</li> </ul><p>Tips: 3x click will wake the device.<br />If device is not reporting, keep the device awake while heal</p> <br /> <h2>Inclusion Information</h2><ol><li>Remove the sensor cover.</li> <li>Make sure the sensor is powered.</li> <li>Set Z‐Wave controller or Z‐Wave gateway into inclusion mode (Refer to the controller or gateway operating manual)</li> <li>Press the button three times within 1.5 second, the device will enter inclusion mode. And the LED will flash on and off alternately five times.</li> </ol> <br /> <h2>Exclusion Information</h2><ol><li>Remove the device cover.</li> <li>Make sure the sensor is powered.</li> <li>Set Z‐Wave controller or Z‐Wave gateway into exclusion mode (Refer to the controller or gateway operating manual)</li> <li>Press the button three times within 1.5 second, the device will enter exclusion mode.</li> </ol> <br /> <h2>Wakeup Information</h2><p>Press the button once to wake the device. If pressed successfully, the LED will blink one time.</p> <ul><li>The minimum wakeup interval is 300s (5 minutes)</li> <li>The maximum wakeup interval is 16,777,200s (about 194 days)</li> <li>Allowable min step among each wakeup interval is 60 seconds, such as 360s, 420s, 480s…</li> <li>Note: The default value is 12 hours. This value is longer, the battery life is greater.</li> </ul>
|
||||
]]></description>
|
||||
<category>Door</category>
|
||||
|
||||
|
|
|
@ -33,13 +33,13 @@ Infrared motion detector with orientation light<br /> <h1>Overview</h1><p>Infrar
|
|||
<property name="binding:*:DecimalType">COMMAND_CLASS_CENTRAL_SCENE</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="config_decimal_param1" typeId="steinel_motionswitchled_00_000_config_decimal_param1">
|
||||
<channel id="config_decimal_param1" typeId="config_decimal">
|
||||
<label>Duration of light after motion detection [s]</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=1</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="config_decimal_param2" typeId="steinel_motionswitchled_00_000_config_decimal_param2">
|
||||
<channel id="config_decimal_param2" typeId="config_decimal">
|
||||
<label>Light threshold [lx]</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_CONFIGURATION;parameter=2</property>
|
||||
|
@ -84,7 +84,7 @@ Infrared motion detector with orientation light<br /> <h1>Overview</h1><p>Infrar
|
|||
<property name="manufacturerId">0271</property>
|
||||
<property name="manufacturerRef">0002:19FB</property>
|
||||
<property name="dbReference">1060</property>
|
||||
<property name="defaultAssociations">0,1,2,3,4,5,6,7</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
|
@ -104,11 +104,10 @@ Infrared motion detector with orientation light<br /> <h1>Overview</h1><p>Infrar
|
|||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_1_2" type="integer" groupName="configuration">
|
||||
<label>1: TIME</label>
|
||||
<description>Duration of light after motion detection [s]</description>
|
||||
<description><![CDATA[
|
||||
Duration of light after motion detection [s]<br /> <h1>Overview</h1><p><br /></p>
|
||||
]]></description>
|
||||
<default>180</default>
|
||||
<options>
|
||||
<option value="0">Duration of light after motion detection [s]</option>
|
||||
</options>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_2_2" type="integer" groupName="configuration">
|
||||
|
@ -117,9 +116,6 @@ Infrared motion detector with orientation light<br /> <h1>Overview</h1><p>Infrar
|
|||
Light threshold [lx]<br /> <h1>Overview</h1><p>Light threshold: 2 - 2000, 0 lx</p> <p>0 - run Learn ambient light sequence. 2000 - is used as daylight ( always night mode ).</p>
|
||||
]]></description>
|
||||
<default>2000</default>
|
||||
<options>
|
||||
<option value="0">Light threshold [lx]</option>
|
||||
</options>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_5_1" type="integer" groupName="configuration">
|
||||
|
@ -236,7 +232,7 @@ Toggle button Scene 1-4<br /> <h1>Overview</h1><p>Parameters 18 specifies scene
|
|||
</parameter>
|
||||
|
||||
<parameter name="config_19_2" type="integer" groupName="configuration">
|
||||
<label>19: LEGACY_INACTIVITY_TIME )</label>
|
||||
<label>19: LEGACY_INACTIVITY_TIME</label>
|
||||
<description><![CDATA[
|
||||
Toggle button inactivity time in "legacy" mode ( timeout )<br /> <h1>Overview</h1><p>In "legacy" button mode function this timeout is used to cancel motion sensor inactivity mode after motion end ( both for on and off state of LED ).</p> <p>Timeout:<br />1..100 - 1 second ( 1 ) to 100 seconds ( 100 ) in 1-second resolution<br />101..200 - 1 minute ( 101 ) to 100 minutes ( 200 ) in 1-minute resolution<br />201..209 - 1 hour ( 201 ) to 9 hours ( 209 ) in 1-hour resolution</p>
|
||||
]]></description>
|
||||
|
@ -244,12 +240,6 @@ Toggle button inactivity time in "legacy" mode ( timeout )<br /> <h1>Overview</h
|
|||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_0" type="text" groupName="association" multiple="true">
|
||||
<label>0: ROOT DEVICE</label>
|
||||
<description>Root</description>
|
||||
<multipleLimit>1</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<description><![CDATA[
|
||||
|
@ -279,7 +269,7 @@ Notification Report<br /> <h1>Overview</h1><p>Group 3 sends MOTION_BEGIN and MOT
|
|||
<description><![CDATA[
|
||||
Ambient light<br /> <h1>Overview</h1><p>Ambient Light via Group 4 is intended to substitute locally measured LUX values in target devices - so that the network can have one source of ambient light value.<br />Frames are sent a maximum of once per 2.5 minutes and a minimum of once per 15 minutes.<br />When device already uses remote Ambient light value, then this value is also retransmitted to group 4.<br />All devices in such a group should have the same LIGHT ( threshold ) settings in order that night mode is detected at the same time.<br />If multichannel association is created the events are send from light sensor endpoint.</p>
|
||||
]]></description>
|
||||
<multipleLimit>6</multipleLimit>
|
||||
<multipleLimit>16</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_5" type="text" groupName="association" multiple="true">
|
||||
|
@ -321,9 +311,6 @@ Button dim<br /> <h1>Overview</h1><p>Group 7 is used for dimming ( use just for
|
|||
<label>TIME</label>
|
||||
<description>Duration of light after motion detection [s]</description>
|
||||
<state pattern="%s">
|
||||
<options>
|
||||
<option value="0">Duration of light after motion detection [s]</option>
|
||||
</options>
|
||||
</state>
|
||||
</channel-type>
|
||||
|
||||
|
@ -332,9 +319,6 @@ Button dim<br /> <h1>Overview</h1><p>Group 7 is used for dimming ( use just for
|
|||
<label>LIGHT</label>
|
||||
<description>Light threshold [lx]</description>
|
||||
<state pattern="%s">
|
||||
<options>
|
||||
<option value="0">Light threshold [lx]</option>
|
||||
</options>
|
||||
</state>
|
||||
</channel-type>
|
||||
|
||||
|
|
|
@ -274,6 +274,12 @@ What happens when you single tap the upper paddle<br /> <h1>Overview</h1><p>Choo
|
|||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<multipleLimit>1</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Status</label>
|
||||
<description>Status</description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
|
|
Loading…
Reference in New Issue