Updated external content (Jenkins build 69)

2.4-patch
openhab-bot 2018-11-07 21:04:23 +00:00
parent 00acf62888
commit 81458acf4c
15 changed files with 1793 additions and 211 deletions

View File

@ -79,7 +79,7 @@ If for some reason continuous transmission is needed, the `refreshmode` can be s
### Lib485 Bridge (`lib485-bridge`)
The Lib385 bridge has one mandatory configuration value: network address (`address`).
The Lib485 bridge has one mandatory configuration value: network address (`address`).
This is the host/port where lib485 is running.
This can be an IP address but it is also allowed to use a FQDN if DNS resolution is available.
If necessary the default port 9020 can be changed by adding `:<port>` to the address.

View File

@ -86,6 +86,9 @@ The multisensor with humidity is build around the DS2438 chipset.
It provides a `temperature`, a `humidity` and a `supplyvoltage` channel.
The voltage input of the DS2438 is connected to a humidity sensor, several common types are supported (see below).
The generic sensor with humidity and temperature using DS1923 chipset.
It provides a `temperature` and `humidity` channels.
It has two parameters: sensor id `id` and refresh time `refresh`.
### Multisensor with Voltage (`ms-tv`)

View File

@ -0,0 +1,112 @@
---
id: sonyaudio
label: SonyAudio
title: SonyAudio - Bindings
type: binding
description: "This binding integrates the [Sony Audio Control API](https://developer.sony.com/develop/audio-control-api/)."
since: 2x
install: manual
---
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
{% include base.html %}
# SonyAudio Binding
This binding integrates the [Sony Audio Control API](https://developer.sony.com/develop/audio-control-api/).
## Supported Things
For the moment the devices that are supported by this binding are
* STR-DN1080
* HT-CT800
* SRS-ZR5
* HT-ST5000
* HT-Z9F
* HT-ZF9
* HT-MT500
When being defined in a \*.things file, the specific thing types
STR-DN1080, HT-ST5000, HT-ZF9, HT-Z9F, HT-CT800, HT-MT500 and SRS-ZR5 should be used.
Please note that these thing types are case sensitive (you need to define them in upper case).
## Discovery
The SonyAudio devices are discovered through UPnP in the local network and all devices are put in the Inbox.
## Thing Configuration
The SonyAudio Thing requires the network address, port and path as a configuration value in order for the binding to know how to access the device.
Additionally, a refresh interval, used to poll the Sony Audio device, can be specified (in seconds).
```
Thing sonyaudio:HT-ST5000:1 [ipAddress="192.168.123.123", port=10000, path="/sony", refresh=60]
```
## Channels
The devices support the following channels:
| Channel Type ID | Item Type | Access Mode | Description | Thing types |
|----------------------------|-----------|-------------|---------------------------------------------------------------------------------------|--------------------------------------------------------|
| power | Switch | RW | Main power on/off | HT-CT800, SRS-ZR5, HT-ST5000, HT-ZF9, HT-Z9F, HT-MT500 |
| input | String | RW | Set or get the input source | HT-CT800, SRS-ZR5, HT-ST5000, HT-ZF9, HT-Z9F, HT-MT500 |
| volume | Dimmer | RW | Set or get the master volume | HT-CT800, SRS-ZR5, HT-ST5000, HT-ZF9, HT-Z9F, HT-MT500 |
| mute | Switch | RW | Set or get the mute state of the master volume | HT-CT800, SRS-ZR5, HT-ST5000, HT-ZF9, HT-Z9F, HT-MT500 |
| soundField | String | RW | Sound field | HT-CT800, SRS-ZR5, HT-ST5000, HT-ZF9, HT-Z9F, HT-MT500 |
| master#power | Switch | RW | Main power on/off | STR-1080 |
| master#soundField | String | RW | Sound field | STR-1080 |
| zone1#power | Switch | RW | Power for zone1 for devices supporting multizone | STR-1080 |
| zone1#input | String | RW | Set or get the input source for zone1 for devices supporting multizone | STR-1080 |
| zone1#volume | Dimmer | RW | Set or get the zone1 volume for devices supporting multizone | STR-1080 |
| zone1#mute | Switch | RW | Set or get the mute state for zone1 volume | STR-1080 |
| zone2#power | Switch | RW | Power for zone2 for devices supporting multizone | STR-1080 |
| zone2#input | String | RW | Set or get the input source for zone2 for devices supporting multizone | STR-1080 |
| zone2#volume | Dimmer | RW | Set or get the zone2 volume for devices supporting multizone | STR-1080 |
| zone2#mute | Switch | RW | Set or get the mute state for zone2 volume | STR-1080 |
| zone3#power | Switch | RW | Power for zone3 for devices supporting multizone | none |
| zone3#input | String | RW | Set or get the input source for zone3 for devices supporting multizone | none |
| zone3#volume | Dimmer | RW | Set or get the zone3 volume for devices supporting multizone | none |
| zone3#mute | Switch | RW | Set or get the mute state for zone3 volume | none |
| zone4#power | Switch | RW | Power for zone4 for devices supporting multizone | STR-1080 |
| zone4#input | String | RW | Set or get the input source for zone4 for devices supporting multizone | STR-1080 |
| zone4#volume | Dimmer | RW | Set or get the zone4 volume for devices supporting multizone | STR-1080 |
| zone4#mute | Switch | RW | Set or get the mute state for zone4 volume | STR-1080 |
| radio#broadcastFreq | Number | R | Current radio frequency | STR-1080 |
| radio#broadcastStation | Number | RW | Set or get current preset radio station | STR-1080 |
| radio#broadcastSeekStation | String | W | Seek for new broadcast station, forward search "fwdSeeking" and backward "bwdSeeking" | STR-1080 |
## Full Example
demo.things:
```
Thing sonyaudio:HT-ST5000:living [ipAddress="192.168.123.123"]
```
demo.items:
```
Group SonyAudio <sonyaudio>
Dimmer Sony_Volume "Volume [%.0f %%]" <soundvolume> (SonyAudio) {channel="sonyaudio:HT-ST5000:living:volume"}
Switch Sony_Mute "Mute" <soundvolume_mute> (SonyAudio) {channel="sonyaudio:HT-ST5000:living:mute"}
String Sony_Sound_Field "Sound Field: [%s]" <text> (SonyAudio) {channel="sonyaudio:HT-ST5000:living:master#soundField"}
```
demo.sitemap:
```
sitemap demo label="Main Menu" {
Frame label="Sony" {
Text label="Volume" icon="soundvolume" {
Slider item=Sony_Volume
Switch item=Sony_Mute
}
Text item=Sony_Sound_Field
}
}
```

View File

@ -18,7 +18,41 @@ The ZW100 supports routing. This allows the device to communicate using other ro
## Overview
No device information is provided in the database. Consider [updating the database](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/73) to improve the documentation.
Technical Specifications
* Battery or USB powered PIR motion sensor, operating distance: Up to 500 feet/150 metres outdoors.
* Operating temperature: 0°C to 40°C
* Relative humidity: 8% RH to 80% RH
### Inclusion Information
Click one time:
* Send non-security Node Info Frame
* Add MultiSensor into Z-wave network (non security inclusion)
Short press 2 times within 1 second:
* Send Security Node Info Frame
* Add Multisensor into Z-Wave network (security inclusion)
### Exclusion Information
Click one time:
* Send non-security Node Info Frame
* Remove MultiSensor from Z-wave network
Short press 2 times within 1 second:
* Send Security Node Info Frame
* Remove MultiSensor from network
### General Usage Information
Press and hold for 20 seconds:
* Reset MultiSensor to factory default (see documentation)
## Channels
@ -123,7 +157,7 @@ Detailed information on each parameter can be found in the sections below.
| 202 | Humidity Sensor Calibration | Humidity Sensor Calibration |
| 203 | Luminance Sensor Calibration | Luminance Sensor Calibration |
| 204 | Ultraviolet Sensor Calibration | Ultraviolet Sensor Calibration |
| 252 | Lock Configuration Parameters | |
| 252 | Disable/Enable Configuration Lock | Disable/Enable Configuration Lock (0=Disable, 1=Enable) |
| 255 | Reset to default factory settings | |
| | 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 |
@ -505,9 +539,9 @@ The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_204_1``` and is of type ```INTEGER```.
### Parameter 252: Lock Configuration Parameters
### Parameter 252: Disable/Enable Configuration Lock
Disable/Enable Configuration Lock (0=Disable, 1=Enable)
Enable/disable Configuration Locked (0 =disable, 1 = enable).
The following option values may be configured -:

View File

@ -18,56 +18,52 @@ The ZW100 supports routing. This allows the device to communicate using other ro
## Overview
RESET - Press and hold for 20 seconds
* Reset MultiSensor to factory default:
1. Press and hold the Action Button for 20 seconds.
2. If holding time more than one second, the LED will blink faster and faster. If holding time more than
20 seconds, the LED will be on for 2 seconds, which indicates reset is success, otherwise please
repeat step 2.
* Note:
1, This procedure should only be used when the primary controller is inoperable.
2, Reset MultiSensor to factory default settings, it will:
a ), let the MultiSensor to be excluded in Z-Wave network;
b), delete the Association settings;
c), restore the Configuration settings to the default.  
Battery or USB powered PIR motion sensor, operating distance: Up to 500 feet/150 metres outdoors.
### Inclusion Information
# Click one time
Click one time
1. Send non-security Node Info frame  
Send non-security Node Info frame, add MultiSensor into Z-Wave network (non-securre inclusion):
* Add MultiSensor into Z-Wave network(non-security inclusion):
1. Power on MultiSensor. The MultiSensors LED will blink slowly when you short press the Action
Button.
2. Let the primary controller into inclusion mode (If you dont know how to do this, refer to its manual).
3. Press the Action Button.
4. If the inclusion is success, MultiSensors LED will be kept turning on for 8 seconds when you short
press the Action Button. If the LED is still in slow blink, in which you need to repeat the process from
step 2.
1. Power on MultiSensor. The MultiSensors LED will blink slowly when you short press the Action Button.
2. Let the primary controller into inclusion mode (If you dont know how to do this, refer to its manual).
3. Press the Action Button.
4. If the inclusion is success, MultiSensors LED will be kept turning on for 8 seconds when you short press the Action Button. If the LED is still in slow blink, in which you need to repeat the process from step 2.
# Short press 2 times within 1 second
Short press 2 times within 1 second
* 1. Send Security Node Info frame.
2. Add MultiSensor into z-wave network(Security inclusion):
1. Power on MultiSensor. The MultiSensors LED will blink slowly when you short press the Action
Button.
2. Let the primary controller into inclusion mode (If you dont know how to do this, refer to its manual).
3. Press the Action Button.
4. If the inclusion is success, MultiSensors LED will be kept turning on for 8 seconds when you short
press the Action Button. If the LED is still in slow blink, in which you need to repeat the process from
step 2. 
Send Security Node Info frame, add MultiSensor into z-wave network (seciure inclusion):
1. Power on MultiSensor. The MultiSensors LED will blink slowly when you short press the Action Button.
2. Let the primary controller into inclusion mode (If you dont know how to do this, refer to its manual).
3. Press the Action Button.
4. If the inclusion is success, MultiSensors LED will be kept turning on for 8 seconds when you short press the Action Button. If the LED is still in slow blink, in which you need to repeat the process from step 2.
### Exclusion Information
Remove MultiSensor from Z-wave network:
1. Power on MultiSensor. The MultiSensors LED will be kept turning on for 8 seconds when you short
press the Action Button.
2. Let the primary controller into exclusion mode (If you dont know how to do this, refer to its manual).
3. Press the Action Button.
4. If the exclusion is success, MultiSensors LED will blink slowly when you short press the Action
Button. If MultiSensors LED still keeps on status, in which you need to repeat the process from step 2.  
Remove MultiSensor from Z-wave network:
1. Power on MultiSensor. The MultiSensors LED will be kept turning on for 8 seconds when you short press the Action Button.
2. Let the primary controller into exclusion mode (If you dont know how to do this, refer to its manual).
3. Press the Action Button.
4. If the exclusion is success, MultiSensors LED will blink slowly when you short press the Action Button. If MultiSensors LED still keeps on status, in which you need to repeat the process from step 2.
### General Usage Information
RESET - Press and hold for 20 seconds
Reset MultiSensor to factory default:
1. Press and hold the Action Button for 20 seconds.
2. If holding time more than one second, the LED will blink faster and faster. If holding time more than 20 seconds, the LED will be on for 2 seconds, which indicates reset is success, otherwise please repeat step 2.
Note: this procedure should only be used when the primary controller is inoperable:
1. Reset MultiSensor to factory default settings, it will:
* let the MultiSensor to be excluded in Z-Wave network
* delete the Association settings
* restore the Configuration settings to the default. 
## Channels
@ -166,12 +162,12 @@ Detailed information on each parameter can be found in the sections below.
| 44 | Battery Threshold | Battery level threshold |
| 45 | Ultraviolet Threshold | Ultraviolet change threshold |
| 46 | Send Alarm Report if low temperature | Send an alarm report if temperature is less than -15 °C |
| 48 | Send a report if the measurement is out of limits | Send a report when the measurement is more than the upper limit value or less than the lower limit value. |
| 49 | Upper limit value of temperature sensor | Upper limit value of temperature sensor |
| 49 | Unit selection for upper limit value of temperature sensor | Unit selection for upper limit value of temperature sensor |
| 49 | Upper limit value of temperature sensor | Upper limit value of temperature sensor |
| 48 | Send a report if the measurement is out of limits | Send report when measurement is at upper/lower limit |
| 49 | Upper limit value of temp sensor | Upper limit value of temperature sensor |
| 49 | Unit for upper limit value of temp sensor | Unit selection for upper limit value of temperature sensor |
| 49 | Upper limit value of temp sensor | Upper limit value of temperature sensor |
| 50 | Lower limit value of temperature sensor | Lower limit value of temperature sensor |
| 50 | Unit selection for lower limit value of temperature sensor | Unit selection for lower limit value of temperature sensor |
| 50 | Unit for lower limit value of temp sensor | Unit selection for lower limit value of temperature sensor |
| 50 | Lower limit value of temperature sensor | Lower limit value of temperature sensor |
| 51 | Upper limit value of humidity sensor | Upper limit value of humidity sensor |
| 52 | Lower limit value of humidity sensor | Lower limit value of humidity sensor |
@ -200,7 +196,7 @@ Detailed information on each parameter can be found in the sections below.
| 202 | Humidity Sensor Calibration | Humidity Sensor Calibration |
| 203 | Luminance Sensor Calibration | Luminance Sensor Calibration |
| 204 | Ultraviolet Sensor Calibration | Ultraviolet Sensor Calibration |
| 252 | Lock Configuration Parameters | Enable or Disable changing of configuration parameters |
| 252 | Disable/Enable Configuration Lock | Disable/Enable Configuration Lock (0=Disable, 1=Enable) |
| 255 | Reset to default factory settings | |
| | 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 |
@ -233,8 +229,8 @@ Motion Sensor reset timeout
1. The time unit is second if the value range is in 10 to 255.
2. If the value range is in 256 to 3600, the time unit will be minute and its value should follow the below rules:
a), Interval time =Value/60, if the interval time can be divided by 60 and without remainder.
b), Interval time= (Value/60) +1, if the interval time can be divided by 60 and has remainder.
a) Interval time =Value/60, if the interval time can be divided by 60 and without remainder.
b) Interval time= (Value/60) +1, if the interval time can be divided by 60 and has remainder.
3. Other values will be ignored.
Values in the range 10 to 3600 may be set.
@ -293,8 +289,7 @@ This parameter has the configuration ID ```config_8_1``` and is of type ```INTEG
### Parameter 9: Report the current power mode
Report the current power mode and the product state of battery power mode
Value1 (MSB): 0x00=USB power mode, 0x01=Battery power mode
Value1 (MSB): 0x00=USB power mode, 0x01=Battery power mode
Value2 (LSB): 0x00=keep sleep state for Battery power mode, 0x01=keep awake for 10 minutes for battery power mode
NOTE: this parameter cannot be used as Get/Set usageThis is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
@ -379,11 +374,7 @@ Threshold change in temperature to induce an automatic report.
1. The unit is Fahrenheit for US version, Celsius for EU/AU version.
2. High byte is the threshold value. Low byte is the unit (0x01=Celsius, 0x02=Fahrenheit).
3. The threshold value (high byte) contains one decimal point. E.g. if the value is set to 20 (0x1401), the threshold value =2.0°C (EU/AU version) or if the value is set to 20 (0x1402), the threshold value=2.0 °F (US version). When the current temperature gap is more then 2.0, which will induce a temperature report to be sent out.This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Temperature Threshold Unit |
Values in the range 0 to 2678400 may be set.
The manufacturer defined default value is ```20```.
@ -394,15 +385,7 @@ This is a write only parameter.
### Parameter 41: Temperature Threshold Unit
Sets the unit of the threshold
According to specs, only 2 values are allowed in the lower word:
(0x0100=Celsius, 0x0200=Fahrenheit). 
This translates to the fact, that only the upper byte of the lower word is used with only 2 values allowed:
1= Celsius
2= Fahrenheit
0x0100=Celsius, 0x0200=Fahrenheit, 1= Celsius, 2= Fahrenheit
The following option values may be configured -:
| Value | Description |
@ -418,7 +401,7 @@ This parameter has the configuration ID ```config_41_4_0000FF00``` and is of typ
### Parameter 41: Temperature Threshold
Threshold change in temperature to induce an automatic report.
It seems that only the lower byte of the upper word is used for temperature threshold.
Lower byte of the upper word is used for temperature threshold.
Values in the range 0 to 100 may be set.
The manufacturer defined default value is ```0```.
@ -503,29 +486,19 @@ This parameter has the configuration ID ```config_46_1``` and is of type ```INTE
### Parameter 48: Send a report if the measurement is out of limits
Send a report when the measurement is more than the upper limit value or less than the lower limit value.
Enable/disable to send a report when the measurement is more than the upper limit value or less than the lower limit value.
Bit mask = 0, disable.
Bit mask = 1, enable.
Bit 0 = temperature.
Bit 1 = humidity.
Bit 2 = luminance.
Send report when measurement is at upper/lower limit
Enable/disable to send a report when the measurement is more than the upper limit value or less than the lower limit value.
Bit mask = 0, disable.
Bit mask = 1, enable.
Bit 0 = temperature.
Bit 1 = humidity.
Bit 2 = luminance.
Bit 3 = ultraviolet.
The above bit masks are used to enable/disable to send out a report when the measurement is less than the lower limit value. The below bit masks are used to enable/disable to send out a report when the measurement is more than the upper limit value
Bit 4 = temperature.
Bit 5 = humidity.
Bit 6 = luminance.
The above bit masks are used to enable/disable to send out a report when the measurement is less than the lower limit value. The below bit masks are used to enable/disable to send out a report when the measurement is more than the upper limit value
Bit 4 = temperature.
Bit 5 = humidity.
Bit 6 = luminance.
Bit 7 = ultraviolet.
_Note:_ If USB power, the Sensor will check the limit every 10 seconds. If battery power, the Sensor will check the limit when it is waken up. 
@ -536,20 +509,18 @@ The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_48_1``` and is of type ```INTEGER```.
### Parameter 49: Upper limit value of temperature sensor
### Parameter 49: Upper limit value of temp sensor
Upper limit value of temperature sensor
Set the upper limit value of temperature sensor. When the measurement is more than this upper limit, which will trigger to sent out a sensor report.
High byte is the upper limit value. Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit).
1. When unit is Celsius.
When unit is Celsius:
Upper limit range: -40.0 to 100.0 ℃ (0xFE70 to 0x03E8). E.g. The default upper limit of EU/AU version is 28.0 ℃ (0x0118), when the measurement is more than 28.0℃, it will be triggered to send out a temperature sensor report.
2. When unit is Fahrenheit.
Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848). E.g. The default upper limit of US version is 82.4℉ (0X0338), when the measurement is more than 82.4℉, it will be triggered to send out a temperature sensor report.  This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
When unit is Fahrenheit:
Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848). E.g. The default upper limit of US version is 82.4℉ (0X0338), when the measurement is more than 82.4℉, it will be triggered to send out a temperature sensor report.This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
Values in the range 0 to 0 may be set.
The manufacturer defined default value is ```0```.
@ -558,10 +529,10 @@ This parameter has the configuration ID ```config_49_4_wo``` and is of type ```I
This is a write only parameter.
### Parameter 49: Unit selection for upper limit value of temperature sensor
### Parameter 49: Unit for upper limit value of temp sensor
Unit selection for upper limit value of temperature sensor
Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit). 
Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit).
The following option values may be configured -:
| Value | Description |
@ -575,17 +546,17 @@ This parameter has the configuration ID ```config_49_4_0000FF00_wo``` and is of
This is a write only parameter.
### Parameter 49: Upper limit value of temperature sensor
### Parameter 49: Upper limit value of temp sensor
Upper limit value of temperature sensor
Set the upper limit value of temperature sensor. When the measurement is more than this upper limit, which will trigger to sent out a sensor report. High byte is the upper limit value. Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit).
1. When unit is Celsius. Upper limit range: -40.0 to 100.0 ℃ (0xFE70 to 0x03E8).
When unit is Celsius:
Upper limit range: -40.0 to 100.0 ℃ (0xFE70 to 0x03E8).
E.g. The default upper limit of EU/AU version is 28.0 ℃ (0x0118), when the measurement is more than 28.0℃, it will be triggered to send out a temperature sensor report.
2. When unit is Fahrenheit. Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848).
When unit is Fahrenheit:
Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848).
E.g. The default upper limit of US version is 82.4℉ (0X0338), when the measurement is more than 82.4℉, it will be triggered to send out a temperature sensor report.  
Values in the range 0 to 65535 may be set.
@ -600,12 +571,10 @@ This is a write only parameter.
Lower limit value of temperature sensor
Set the lower limit value of temperature sensor. When the measurement is less than this lower limit, which will trigger to sent out a sensor report. High byte is the lower limit value. Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit).
1. When unit is Celsius.
When unit is Celsius:
Lower limit range: -40.0 to 100.0 ℃ (0xFE70 to 0x03E8). E.g. The default lower limit of EU/AU version is 0 ℃ (0x0000), when the measurement is less than 0℃, it will be triggered to send out a temperature sensor report.
2. When unit is Fahrenheit.
When unit is Fahrenheit:
Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848). E.g. The default lower limit of US version is 32.0℉ (0x0140), when the measurement is less than 32.0℉, it will be triggered to send out a temperature sensor report.  This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
Values in the range 0 to 0 may be set.
@ -615,7 +584,7 @@ This parameter has the configuration ID ```config_50_4_wo``` and is of type ```I
This is a write only parameter.
### Parameter 50: Unit selection for lower limit value of temperature sensor
### Parameter 50: Unit for lower limit value of temp sensor
Unit selection for lower limit value of temperature sensor
Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit).  
@ -637,12 +606,12 @@ This is a write only parameter.
Lower limit value of temperature sensor
Set the lower limit value of temperature sensor. When the measurement is less than this lower limit, which will trigger to sent out a sensor report. High byte is the lower limit value. Low bytes represent the unit (0x0100=Celsius, 0x0200=Fahrenheit).
1. When unit is Celsius. Lower limit range: -40.0 to 100.0 ℃ (0xFE70 to 0x03E8).
When unit is Celsius:
Lower limit range: -40.0 to 100.0 ℃ (0xFE70 to 0x03E8).
E.g. The default lower limit of EU/AU version is 0 ℃ (0x0000), when the measurement is less than 0℃, it will be triggered to send out a temperature sensor report.
2. When unit is Fahrenheit. Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848).
When unit is Fahrenheit:
Upper limit range: -40.0 to 212.0 ℉ (0xFE70 to 0x0848).
E.g. The default lower limit of US version is 32.0℉ (0x0140), when the measurement is less than 32.0℉, it will be triggered to send out a temperature sensor report. 
Values in the range 0 to 2678400 may be set.
@ -735,15 +704,11 @@ Set the recover limit value of temperature sensor.
_Note_:
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. High byte is the recover limit value. Low byte is the unit (0x01=Celsius, 0x02=Fahrenheit).
4. Recover limit range: 1.0 to 25.5 ℃/ ℉ (0x0101 to 0xFF01 or 0x0102 to 0xFF02).
E.g. The default recover limit value is 2.0 ℃/℉ (0x1401/0x1402), when the measurement is less than (Upper limit 2), the upper limit report would be enabled one time or when the measurement is more
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. High byte is the recover limit value. Low byte is the unit (0x01=Celsius, 0x02=Fahrenheit).
4. Recover limit range: 1.0 to 25.5 ℃/ ℉ (0x0101 to 0xFF01 or 0x0102 to 0xFF02).
5. E.g. The default recover limit value is 2.0 ℃/℉ (0x1401/0x1402), when the measurement is less than (Upper limit 2), the upper limit report would be enabled one time
Values in the range 0 to 65535 may be set.
The manufacturer defined default value is ```0```.
@ -756,15 +721,12 @@ This parameter has the configuration ID ```config_57_2``` and is of type ```INTE
Recover limit value of humidity sensor
Set the recover limit value of humidity sensor.
_Note_:
Note:
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. Recover limit range: 1 to 50% (0x01 to 0x32).
E.g. The default recover limit value is 5%, when the measurement is less than (Upper limit 5), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 5), the lower limit report would be enabled one time. 
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. Recover limit range: 1 to 50% (0x01 to 0x32).
4. E.g. The default recover limit value is 5%, when the measurement is less than (Upper limit 5), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 5), the lower limit report would be enabled one time. 
Values in the range 1 to 50 may be set.
The manufacturer defined default value is ```5```.
@ -779,15 +741,11 @@ Set the recover limit value of Lighting sensor.
_Note_:
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. Unit = 10×Recover limit (Lux)
4. **Recover limit range: 10 to 2550Lux (0x01 to 0xFF).**
E.g. The default recover limit value is 100 Lux, when the measurement is less than (Upper limit 100), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 100), the lower limit report would be enabled one time. 
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. Unit = 10×Recover limit (Lux)
4. **Recover limit range: 10 to 2550Lux (0x01 to 0xFF).**
5. E.g. The default recover limit value is 100 Lux, when the measurement is less than (Upper limit 100), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 100), the lower limit report would be enabled one time. 
Values in the range 1 to 255 may be set.
The manufacturer defined default value is ```10```.
@ -802,13 +760,10 @@ Set the recover limit value of Ultraviolet sensor.
_Note_:
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. Recover limit range: 1 to 5 (0x01 to 0x05).
E.g. The default recover limit value is 2, when the measurement is less than (Upper limit 2), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 2), the lower limit report would be enabled one time.  
1. When the current measurement <= (Upper limit Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit. After that the upper limit report would be disabled again until the measurement <= (Upper limit Recover limit).
2. When the current measurement >= (Lower limit + Recover limit), the lower limit report is enabled and then it would send out a sensor report when the next measurement is less than the lower limit. After that the lower limit report would be disabled again until the measurement >= (Lower limit + Recover limit).
3. Recover limit range: 1 to 5 (0x01 to 0x05).
4. E.g. The default recover limit value is 2, when the measurement is less than (Upper limit 2), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 2), the lower limit report would be enabled one time.  
Values in the range 1 to 5 may be set.
The manufacturer defined default value is ```2```.
@ -821,27 +776,19 @@ This parameter has the configuration ID ```config_60_1``` and is of type ```INTE
Out-of-limit state of the Sensors
Get the out-of-limit state of the Sensors.
Bit mask = 0, within the limit.
Bit mask = 1, out of the limit.
Bit 0 = temperature.
Bit 1 = humidity.
Bit 2 = luminance.
Bit 3 = ultraviolet.
* Bit mask = 0, within the limit.
* Bit mask = 1, out of the limit.
* Bit 0 = temperature.
* Bit 1 = humidity.
* Bit 2 = luminance.
* Bit 3 = ultraviolet.
The above bit masks are used to indicate whether the current measurements of the Sensors are out of the lower limit.. The below bit masks are used to indicate whether the current measurements of the Sensors are out of the upper limit.
Bit 4 = temperature.
Bit 5 = humidity.
Bit 6 = luminance.
Bit 7 = ultraviolet
* Bit 4 = temperature.
* Bit 5 = humidity.
* Bit 6 = luminance.
* Bit 7 = ultraviolet
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```0```.
@ -1097,9 +1044,9 @@ The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_204_1``` and is of type ```INTEGER```.
### Parameter 252: Lock Configuration Parameters
### Parameter 252: Disable/Enable Configuration Lock
Enable or Disable changing of configuration parameters
Disable/Enable Configuration Lock (0=Disable, 1=Enable)
Enable/disable Configuration Locked (0 =disable, 1 = enable).
The following option values may be configured -:

View File

@ -18,31 +18,37 @@ The ZW100 supports routing. This allows the device to communicate using other ro
## Overview
**Technical Specifications**
Technical Specifications
Operating distance:  Up to 500 feet/150 meters outdoors
* Battery or USB powered PIR motion sensor, operating distance: Up to 500 feet/150 metres outdoors.
* Operating temperature: 0°C to 40°C
* Relative humidity: 8% RH to 80% RH
Operating temperature: 0°C to 40°C
Relative humidity: 8% RH to 80% RH
**Function of Z_Wave Button**
### Inclusion Information
Click one time:
* Send non-security Node Info Frame
* Add MultiSensor into Z-wave network (non security inclusion)
* Remove MultiSensor from Z-wave network
Short press 2 times within 1 second:
* Send Security Node Info Frame
* Add Multisensor into Z-Wave network (security inclusion)
### Exclusion Information
Click one time:
* Send non-security Node Info Frame
* Remove MultiSensor from Z-wave network
Short press 2 times within 1 second:
* Send Security Node Info Frame
* Remove MultiSensor from network
Press and hold for 3 seconds:
* Enable/Disable wake up for 10 minutes. (when it is enabled, the orange Led will fast blink)
### General Usage Information
Press and hold for 20 seconds:
@ -156,7 +162,7 @@ Detailed information on each parameter can be found in the sections below.
| 202 | Humidity Sensor Calibration | Humidity Sensor Calibration |
| 203 | Luminance Sensor Calibration | Luminance Sensor Calibration |
| 204 | Ultraviolet Sensor Calibration | Ultraviolet Sensor Calibration |
| 252 | Lock Configuration Parameters | Enable/disable Configuration Locked |
| 252 | Disable/Enable Configuration Lock | Disable/Enable Configuration Lock (0=Disable, 1=Enable) |
| 255 | Reset to default factory settings | |
| | 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 |
@ -615,10 +621,10 @@ The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_204_1``` and is of type ```INTEGER```.
### Parameter 252: Lock Configuration Parameters
Enable/disable Configuration Locked
### Parameter 252: Disable/Enable Configuration Lock
Disable/Enable Configuration Lock (0=Disable, 1=Enable)
Disable/Enable Configuration Lock (0=Disable, 1=Enable)
The following option values may be configured -:
| Value | Description |

View File

@ -18,19 +18,7 @@ The ZW100 supports routing. This allows the device to communicate using other ro
## Overview
RESET - Press and hold for 20 seconds
* Reset MultiSensor to factory default:
1. Press and hold the Action Button for 20 seconds.
2. If holding time more than one second, the LED will blink faster and faster. If holding time more than
20 seconds, the LED will be on for 2 seconds, which indicates reset is success, otherwise please
repeat step 2.
* Note:
1, This procedure should only be used when the primary controller is inoperable.
2, Reset MultiSensor to factory default settings, it will:
a ), let the MultiSensor to be excluded in Z-Wave network;
b), delete the Association settings;
c), restore the Configuration settings to the default.  
Battery or USB powered PIR motion sensor, operating distance: Up to 500 feet/150 metres outdoors.
### Inclusion Information
@ -179,7 +167,7 @@ Detailed information on each parameter can be found in the sections below.
| 202 | Humidity Sensor Calibration | Humidity Sensor Calibration |
| 203 | Luminance Sensor Calibration | Luminance Sensor Calibration |
| 204 | Ultraviolet Sensor Calibration | Ultraviolet Sensor Calibration |
| 252 | Lock Configuration Parameters | Enable or Disable changing of configuration parameters |
| 252 | Disable/Enable Configuration Lock | Disable/Enable Configuration Lock (0=Disable, 1=Enable) |
| 255 | Reset to default factory settings | |
| | 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 |
@ -324,11 +312,7 @@ Threshold change in temperature to induce an automatic report.
1. The unit is Fahrenheit for US version, Celsius for EU/AU version.
2. High byte is the threshold value. Low byte is the unit (0x01=Celsius, 0x02=Fahrenheit).
3. The threshold value (high byte) contains one decimal point. E.g. if the value is set to 20 (0x1401), the threshold value =2.0°C (EU/AU version) or if the value is set to 20 (0x1402), the threshold value=2.0 °F (US version). When the current temperature gap is more then 2.0, which will induce a temperature report to be sent out.This is an advanced parameter and will therefore not show in the user interface without entering advanced mode.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Temperature Threshold Unit |
Values in the range 0 to 100 may be set.
The manufacturer defined default value is ```20```.
@ -665,10 +649,10 @@ The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_204_1``` and is of type ```INTEGER```.
### Parameter 252: Lock Configuration Parameters
### Parameter 252: Disable/Enable Configuration Lock
Enable or Disable changing of configuration parameters
Enable/disable Configuration Locked (0 =disable, 1 = enable).
Disable/Enable Configuration Lock (0=Disable, 1=Enable)
Disable/Enable Configuration Lock (0=Disable, 1=Enable)
The following option values may be configured -:
| Value | Description |

View File

@ -0,0 +1,119 @@
---
layout: documentation
title: ADC-S2000-T-RA - ZWave
---
{% include base.html %}
# ADC-S2000-T-RA Temperature Sensor
This describes the Z-Wave device *ADC-S2000-T-RA*, manufactured by *Building 36 Technologies* with the thing type UID of ```building36_adcs2000tra_00_000```.
The device is in the category of *Sensor*, defining Device used to measure something.
![ADC-S2000-T-RA product image](https://www.cd-jackson.com/zwave_device_uploads/931/931_default.jpg)
The ADC-S2000-T-RA 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 ADC-S2000-T-RA 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
Provides temperature reading from another location so Smart Thermostat can take smarter actions to maximize comfort and energy saving.
### Inclusion Information
Press the Pairing button on the Temperature Sensor to add it to the Z-Wave network.You will see the light on the Temperature Sensor turn solid white when it has been successfully added.
### Exclusion Information
Press the Pairing button on the Temperature Sensor to delete it from the Z-Wave network. The light on the Temperature Sensor will start flashing to indicate it has been successfully deleted.
### Wakeup Information
The ADC-S2000-T-RA 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.
Every 4 hours.
## Channels
The following table summarises the channels available for the ADC-S2000-T-RA -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Binary Sensor | sensor_binary | Door | Switch |
| Sensor (temperature) | sensor_temperature | Temperature | Number:Temperature |
| Battery Level | battery-level | Battery | Number |
### Binary Sensor
Indicates if a sensor has triggered.
The ```sensor_binary``` channel 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 |
|-------|-----------|
| ON | Triggered |
| OFF | Untriggered |
### Sensor (temperature)
Indicates the current temperature.
The ```sensor_temperature``` channel supports the ```Number:Temperature``` item and is in the ```Temperature``` category.
### 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 ```battery-level``` channel supports the ```Number``` item and is in the ```Battery``` category.
## Device Configuration
The device has no configuration parameters defined.
## 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 device does not support associations.
## Technical Information
### Endpoints
#### Endpoint 0
| Command Class | Comment |
|---------------|---------|
| COMMAND_CLASS_NO_OPERATION_V1| |
| COMMAND_CLASS_BASIC_V1| |
| COMMAND_CLASS_SENSOR_BINARY_V1| |
| COMMAND_CLASS_SENSOR_MULTILEVEL_V4| |
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
| COMMAND_CLASS_CONFIGURATION_V1| |
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_POWERLEVEL_V1| |
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
| COMMAND_CLASS_BATTERY_V1| |
| COMMAND_CLASS_WAKE_UP_V2| |
| COMMAND_CLASS_ASSOCIATION_V2| |
| COMMAND_CLASS_VERSION_V2| |
### Documentation Links
* [User Guide](https://www.cd-jackson.com/zwave_device_uploads/931/Alarm-com-Temperature-Sensor-ADC-S2000-T-RA-User-Guide.pdf)
* [Installation Guide](https://www.cd-jackson.com/zwave_device_uploads/931/Alarm-com-Temperature-Sensor-ADC-S2000-T-RA-Installation-Guide.pdf)
---
Did you spot an error in the above definition or want to improve the content?
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/931).

View File

@ -0,0 +1,195 @@
---
layout: documentation
title: ADC-T 2000 - ZWave
---
{% include base.html %}
# ADC-T 2000 Alarm.com Smart Thermostat
This describes the Z-Wave device *ADC-T 2000*, manufactured by *Building 36 Technologies* with the thing type UID of ```building36_adct2000_00_000```.
The device is in the category of *HVAC*, defining Air condition devices, Fans.
![ADC-T 2000 product image](https://www.cd-jackson.com/zwave_device_uploads/926/926_default.jpg)
The ADC-T 2000 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
* Intelligently Connected with Alarm.com (Alarm.com account required)
* Remote Access and Control
* Custom Schedules
* Critical Temperature Alerts and Geo-Services Automation
* Can be paired with Alarm.com Temperature Sensor ADC-S2000-T-RA for enhanced climate control and improved energy savings (sold separately)
### Inclusion Information
Put thermostat in OFF mode (no mode icons are lit)
Press and hold the DOWN button to begin inclusion mode. Release when the RADIO icon lights up.
When the RADIO icon becomes solid, the thermostat has been included.
### Exclusion Information
Put thermostat in OFF mode (no mode icons are lit)
Press and hold the DOWN button to begin exclusion mode. Release when the RADIO icon lights up.
When the RADIO icon flashes red, the thermostat has been excluded.
### Wakeup Information
The ADC-T 2000 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.
## Channels
The following table summarises the channels available for the ADC-T 2000 -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Sensor (temperature) | sensor_temperature | Temperature | Number:Temperature |
| Sensor (relative humidity) | sensor_relhumidity | Humidity | Number |
| Thermostat mode | thermostat_mode | Temperature | Number |
| Operating State | thermostat_state | Temperature | Number |
| Setpoint (heating) | thermostat_setpoint | Temperature | Number:Temperature |
| Setpoint (cooling) | thermostat_setpoint | Temperature | Number:Temperature |
| Thermostat fan mode | thermostat_fanmode | | |
| Thermostat fan state | thermostat_fanstate | | |
| Battery Level | battery-level | Battery | Number |
| Clock Time Offset | time_offset | Temperature | Number |
### Sensor (temperature)
Indicates the current temperature.
The ```sensor_temperature``` channel supports the ```Number:Temperature``` item and is in the ```Temperature``` category.
### Sensor (relative humidity)
Indicates the current relative humidity.
The ```sensor_relhumidity``` channel supports the ```Number``` item and is in the ```Humidity``` category. This is a read only channel so will only be updated following state changes from the device.
### Thermostat mode
Sets the thermostat.
The ```thermostat_mode``` channel supports the ```Number``` item and is in the ```Temperature``` category.
The following state translation is provided for this channel to the ```Number``` item type -:
| Value | Label |
|-------|-----------|
| 0 | Off |
| 1 | Heat |
| 2 | Cool |
| 3 | Auto |
| 4 | Aux Heat |
| 5 | Resume |
| 6 | Fan Only |
| 7 | Furnace |
| 8 | Dry Air |
| 9 | Moist Air |
| 10 | Auto Changeover |
| 11 | Heat Economy |
| 12 | Cool Economy |
| 13 | Away |
### Operating State
Sets the thermostat operating state.
The ```thermostat_state``` channel supports the ```Number``` item and is in the ```Temperature``` category.
The following state translation is provided for this channel to the ```Number``` item type -:
| Value | Label |
|-------|-----------|
| 0 | Idle |
| 1 | Heating |
| 2 | Cooling |
| 3 | Fan Only |
| 4 | Pending Heat |
| 5 | Pending Cool |
| 6 | Vent / Economiser |
### Setpoint (heating)
Sets the thermostat setpoint.
The ```thermostat_setpoint``` channel supports the ```Number:Temperature``` item and is in the ```Temperature``` category.
### Setpoint (cooling)
Sets the thermostat setpoint.
The ```thermostat_setpoint``` channel supports the ```Number:Temperature``` item and is in the ```Temperature``` category.
### Thermostat fan mode
Channel type information on this channel is not found.
### Thermostat fan state
Channel type information on this channel is not found.
### 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 ```battery-level``` channel supports the ```Number``` item and is in the ```Battery``` category.
### Clock Time Offset
Provides the current time difference for the devices time.
The ```time_offset``` channel supports the ```Number``` item and is in the ```Temperature``` category.
## Device Configuration
The device has no configuration parameters defined.
## 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 device does not support associations.
## Technical Information
### Endpoints
#### Endpoint 0
| Command Class | Comment |
|---------------|---------|
| COMMAND_CLASS_BASIC_V1| |
| COMMAND_CLASS_SENSOR_MULTILEVEL_V6| |
| COMMAND_CLASS_THERMOSTAT_MODE_V1| |
| COMMAND_CLASS_THERMOSTAT_OPERATING_STATE_V1| |
| COMMAND_CLASS_THERMOSTAT_SETPOINT_V1| |
| COMMAND_CLASS_THERMOSTAT_FAN_MODE_V1| |
| COMMAND_CLASS_THERMOSTAT_FAN_STATE_V1| |
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
| COMMAND_CLASS_CONFIGURATION_V1| |
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_POWERLEVEL_V1| |
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
| COMMAND_CLASS_BATTERY_V1| |
| COMMAND_CLASS_CLOCK_V1| |
| COMMAND_CLASS_ASSOCIATION_V2| |
| COMMAND_CLASS_VERSION_V2| |
### Documentation Links
* [Product Manual](https://www.cd-jackson.com/zwave_device_uploads/926/Smart-Thermostat-Product-Manual1.pdf)
---
Did you spot an error in the above definition or want to improve the content?
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/926).

View File

@ -0,0 +1,98 @@
---
layout: documentation
title: GE 12340 (ZW4002) - ZWave
---
{% include base.html %}
# GE 12340 (ZW4002) In-Wall Smart Fan Control
This describes the Z-Wave device *GE 12340 (ZW4002)*, manufactured by *Jasco Products* with the thing type UID of ```ge_12730zw4002_00_000```.
The device is in the category of *Wall Switch*, defining Any device attached to the wall that controls a binary status of something, for ex. a light switch.
![GE 12340 (ZW4002) product image](https://www.cd-jackson.com/zwave_device_uploads/932/932_default.png)
The GE 12340 (ZW4002) supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is also able to participate in the routing of data between other devices in the mesh network.
## Overview
# Product Features
* Includes white and light almond paddles that will match most standard wall plates (wall plate not included).
* Can be controlled in groups of multiple devices.
* Easily locate the switch in a dark room with the integrated blue LED indicator.
* Use by itself or with up to four GE add-on switches in three, four, five and six-way wiring configurations.
# Product Specifications
* Brand: GE/Jasco
* Model Number: 12730
* Z-Wave Cert Number: ZC08-14110015
### Inclusion Information
1. Follow the instructions for your Z-wave certified controller to include a device to the Z-wave network.
2. Once the controller is ready to include your device, press and release the top or bottom of the smart fan control switch (rocker) to include it in the network. Note: Your controller may need to be within 10 feet of the device to be included.
3. Once your controller has confirmed that the device has been included, refresh the Z-wave network to optimize performance.
Please reference the controller/gateways manual for instructions. Now you have complete control to turn your fixture ON/OFF and adjust fan speed levels according to groups, scenes, schedules and interactive automation programmed by your controller. If your Z-wave certified controller features Remote Access, you can now control your fixture from your mobile devices.
Note: To exclude and reset the device, follow the instructions provided by your Z-Wave controller
### Exclusion Information
1. Follow the instructions for your Z-wave certified controller to exclude a device to the Z-wave network.
2. Once the controller is ready to exclude your device, press and release the top or bottom of the smart fan control switch (rocker) to exclude it in the network. Note: Your controller may need to be within 10 feet of the device to be exclude.
3. Once your controller has confirmed that the device has been excluded, refresh the Z-wave network to optimize performance.
## Channels
The following table summarises the channels available for the GE 12340 (ZW4002) -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Dimmer | switch_dimmer | DimmableLight | Dimmer |
### Dimmer
The brightness channel allows to control the brightness of a light.
It is also possible to switch the light on and off.
The ```switch_dimmer``` channel supports the ```Dimmer``` item and is in the ```DimmableLight``` category.
## Device Configuration
The device has no configuration parameters defined.
## 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 device does not support associations.
## Technical Information
### Endpoints
#### Endpoint 0
| Command Class | Comment |
|---------------|---------|
| COMMAND_CLASS_NO_OPERATION_V1| |
| COMMAND_CLASS_BASIC_V1| |
| COMMAND_CLASS_SWITCH_MULTILEVEL_V1| Linked to BASIC|
| COMMAND_CLASS_SWITCH_ALL_V1| |
| COMMAND_CLASS_CONFIGURATION_V1| |
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_VERSION_V1| |
### Documentation Links
* [manual](https://www.cd-jackson.com/zwave_device_uploads/932/12730-EnFrSp-QStart-V1-081314.pdf)
---
Did you spot an error in the above definition or want to improve the content?
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/932).

View File

@ -52,7 +52,79 @@ The ```switch_binary``` channel supports the ```Switch``` item and is in the ```
## Device Configuration
The device has no configuration parameters defined.
The following table provides a summary of the 3 configuration parameters available in the NZW30.
Detailed information on each parameter can be found in the sections below.
| Param | Name | Description |
|-------|-------|-------------|
| 3 | ledIndicator | Set the LED light behavior |
| 4 | invert | Invert on & off on the physical switch |
| 5 | autoOff | Automatically turn switch off after this number of seconds |
| | Switch All Mode | Set the mode for the switch when receiving SWITCH ALL commands |
### Parameter 3: ledIndicator
Set the LED light behavior
This setting controls the operation of the LED indicator light on the bottom of the switch.  The options are 0,1,2,3.  They are described below.
* 0 (default): Turn LED indicator on when switch is off
* 1: Turn LED indicator on when switch is on
* 2: Indicator LED is always off
* 3: Indicator LED is always on
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Turn LED indicator on when switch is off |
| 1 | Turn LED indicator on when switch is on |
| 2 | Indicator LED is always off |
| 3 | Indicator LED is always on |
The manufacturer defined default value is ```0``` (Turn LED indicator on when switch is off).
This parameter has the configuration ID ```config_3_1``` and is of type ```INTEGER```.
### Parameter 4: invert
Invert on & off on the physical switch
Invert what the top and bottom of the switch does.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | No |
| 1 | Yes |
The manufacturer defined default value is ```0``` (No).
This parameter has the configuration ID ```config_4_1``` and is of type ```INTEGER```.
### Parameter 5: autoOff
Automatically turn switch off after this number of seconds
Values in the range 0 to 32767 may be set.
The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_5_2``` and is of type ```INTEGER```.
### Switch All Mode
Set the mode for the switch when receiving SWITCH ALL commands.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Exclude from All On and All Off groups |
| 1 | Include in All On group |
| 2 | Include in All Off group |
| 255 | Include in All On and All Off groups |
This parameter has the configuration ID ```switchall_mode``` and is of type ```INTEGER```.
## Association Groups

View File

@ -0,0 +1,459 @@
---
layout: documentation
title: MH-P311 - ZWave
---
{% include base.html %}
# MH-P311 MCO Home Dimmer Switch
This describes the Z-Wave device *MH-P311*, manufactured by *[McoHome Technology Co., Ltd](http://www.mcohome.com/)* with the thing type UID of ```mcohome_mhp311_00_000```.
The device is in the category of *Wall Switch*, defining Any device attached to the wall that controls a binary status of something, for ex. a light switch.
![MH-P311 product image](https://www.cd-jackson.com/zwave_device_uploads/929/929_default.jpg)
The MH-P311 supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is also able to participate in the routing of data between other devices in the mesh network.
## Overview
Wall Dimmer Switch 
### Inclusion Information
INCLUDING the device into Z-Wave network:
1. Set the controller into INCLUSION mode. Follow instructions provided by controller manufacturer.
2. Press the key on the panel 3 times in quick succession (within approx 1.5sec).
Note: Check the controller or gateway to see whether inclusion is successful. 
### Exclusion Information
EXCLUDING the device from Z-Wave network:
1. Set the controller into EXCLUSION mode. Follow instructions provided by controller manufacturer.
2. Press the key on the panel 3 times in quick succession (within approx 1.5sec).
Note: Check the controller or gateway to see whether exclusion is successful. The exclusion will delete all association data. 
## Channels
The following table summarises the channels available for the MH-P311 -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Dimmer | switch_dimmer | DimmableLight | Dimmer |
| Scene Number | scene_number | | Number |
### Dimmer
The brightness channel allows to control the brightness of a light.
It is also possible to switch the light on and off.
The ```switch_dimmer``` channel supports the ```Dimmer``` item and is in the ```DimmableLight``` category.
### Scene Number
Triggers when a scene button is pressed.
The ```scene_number``` channel supports the ```Number``` item.
## Device Configuration
The following table provides a summary of the 19 configuration parameters available in the MH-P311.
Detailed information on each parameter can be found in the sections below.
| Param | Name | Description |
|-------|-------|-------------|
| 1 | State Saved? | Dimmer state saved or not when power down |
| 2 | Beep | Beep |
| 3 | LED Backlit Brightness Level | LED Backlit Brightness Level |
| 4 | ALL ON/ALL OFF | ALL ON/ALL OFF |
| 5 | Minimum brightness level | Minimum brightness level |
| 6 | Maximum brightness level | Maximum brightness level |
| 7 | Single dimming step time(Manual) | Single dimming step time(Manual) |
| 8 | Single dimming step size(Manual) | Single dimming step time(Manual) |
| 9 | Single dimming step time (Auto) | Single dimming step time (Auto) |
| 10 | Single dimming step size (Auto) | Single dimming step size (Auto) |
| 11 | Timer function (Auto-off) | Timer function (Auto-off) |
| 13 | One click of S1 | One click of S1 |
| 14 | Double click of S1 | Double click of S1 |
| 15 | Switch1 to Association Group 2 & 3 | Operation report from Switch1 to Association Group 2 & 3 |
| 16 | Switch1 to Association Group 2 | Operation report from Switch1 to Association Group 2 |
| 19 | Scene ID sent to AG1 when one click of S1 | Scene ID sent to AG1 when one click of S1 |
| 20 | Scene ID sent to AG1 when double click of S1 | Scene ID sent to AG1 when double click of S1 |
| 21 | Scene ID sent to AG1 when hold S1 | Scene ID sent to AG1 when hold S1 |
| 255 | Factory setting | Factory setting |
| | Switch All Mode | Set the mode for the switch when receiving SWITCH ALL commands |
### Parameter 1: State Saved?
Dimmer state saved or not when power down
0x00 not savedDimmer will be off
when powered again
0x01 savedDimmer will keep the same
state when powered again
Values in the range 0 to 1 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_1_1``` and is of type ```INTEGER```.
### Parameter 2: Beep
Beep
0x00 Beep disabled
0x01 Beep enabled
Values in the range 0 to 1 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_2_1``` and is of type ```INTEGER```.
### Parameter 3: LED Backlit Brightness Level
LED Backlit Brightness Level
0x00 LED disabled
0x01~0x0A Min level-Max level
Values in the range 0 to 10 may be set.
The manufacturer defined default value is ```10```.
This parameter has the configuration ID ```config_3_1``` and is of type ```INTEGER```.
### Parameter 4: ALL ON/ALL OFF
ALL ON/ALL OFF
0x00 forbid ALL ON, forbid ALL OFF
0x01 forbid ALL ON, allow ALL OFF
0x02 allow ALL ON, forbid ALL OFF
0xFF allow ALL ON, allow ALL OFF
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```255```.
This parameter has the configuration ID ```config_4_1``` and is of type ```INTEGER```.
### Parameter 5: Minimum brightness level
Minimum brightness level
1~98 percentage brightness level
The max level should always higher than min level
Values in the range 1 to 98 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_5_1``` and is of type ```INTEGER```.
### Parameter 6: Maximum brightness level
Maximum brightness level
2~99 percentage brightness level
The max level should always higher than min level
Values in the range 2 to 99 may be set.
The manufacturer defined default value is ```99```.
This parameter has the configuration ID ```config_6_1``` and is of type ```INTEGER```.
### Parameter 7: Single dimming step time(Manual)
Single dimming step time(Manual)
Max 2.55s, in 10ms steps
Manual control realized by holding external 8 button
Values in the range 1 to 2550 may be set.
The manufacturer defined default value is ```3```.
This parameter has the configuration ID ```config_7_2``` and is of type ```INTEGER```.
### Parameter 8: Single dimming step size(Manual)
Single dimming step time(Manual)
Single dimming step size(Manual)
Values in the range 1 to 99 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_8_1``` and is of type ```INTEGER```.
### Parameter 9: Single dimming step time (Auto)
Single dimming step time (Auto)
Max 2.55s, in 10ms steps
Auto control
realized by:
- one click;
- double click of
external button;
- send Z-Wave CC
Values in the range 1 to 2550 may be set.
The manufacturer defined default value is ```3```.
This parameter has the configuration ID ```config_9_2``` and is of type ```INTEGER```.
### Parameter 10: Single dimming step size (Auto)
Single dimming step size (Auto)
Auto control
realized by:
- one click;
- double click of
external button;
- send Z-Wave CC
Values in the range 1 to 99 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_10_1``` and is of type ```INTEGER```.
### Parameter 11: Timer function (Auto-off)
Timer function (Auto-off)
0x00 function disabled
0x0001~0x00FF 1s~255s
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_11_2``` and is of type ```INTEGER```.
### Parameter 13: One click of S1
One click of S1
0x00 switch between Off and last saved
brightness level
1~99 percentage value
switch between Off and the set value
Values in the range 0 to 99 may be set.
The manufacturer defined default value is ```99```.
This parameter has the configuration ID ```config_13_1``` and is of type ```INTEGER```.
### Parameter 14: Double click of S1
Double click of S1
0x00 function disabled
0x01 reach max brightness level
Values in the range 0 to 1 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_14_1``` and is of type ```INTEGER```.
### Parameter 15: Switch1 to Association Group 2 & 3
Operation report from Switch1 to Association Group 2 & 3
bit 6:0
0x00 report all operation to AG2&3
0x01 only report when switching OFF
0x02 only report when switching ON
bit7 (valid for AG3 during dimming only)
0 not report during dimming
1 report during dimming
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_15_1``` and is of type ```INTEGER```.
### Parameter 16: Switch1 to Association Group 2
Operation report from Switch1 to Association Group 2
0x00 When sent Basic Set On,
carried Value is 0xFF
0x01 When sent Basic Set On, carried
Value is Current Dimmer Value
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```1```.
This parameter has the configuration ID ```config_16_1``` and is of type ```INTEGER```.
### Parameter 19: Scene ID sent to AG1 when one click of S1
Scene ID sent to AG1 when one click of S1
0 Scene Activation disabled
1~255 send Activation CC to AG1 with
specified Scene ID
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_19_1``` and is of type ```INTEGER```.
### Parameter 20: Scene ID sent to AG1 when double click of S1
Scene ID sent to AG1 when double click of S1
0 Scene Activation disabled
1~255 send Activation CC to AG1 with
specified Scene ID
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_20_1``` and is of type ```INTEGER```.
### Parameter 21: Scene ID sent to AG1 when hold S1
Scene ID sent to AG1 when hold S1
0 Scene Activation disabled
1~255 send Activation CC to AG1 with
specified Scene ID
Values in the range 0 to 255 may be set.
The manufacturer defined default value is ```0```.
This parameter has the configuration ID ```config_21_1``` and is of type ```INTEGER```.
### Parameter 255: Factory setting
Factory setting
0x55 restore factory setting
Values in the range 85 to 85 may be set.
The manufacturer defined default value is ```85```.
This parameter has the configuration ID ```config_255_1_wo``` and is of type ```INTEGER```.
This is a write only parameter.
### Switch All Mode
Set the mode for the switch when receiving SWITCH ALL commands.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Exclude from All On and All Off groups |
| 1 | Include in All On group |
| 2 | Include in All Off group |
| 255 | Include in All On and All Off groups |
This parameter has the configuration ID ```switchall_mode``` 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 MH-P311 supports 3 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.
1st AG: reports devices dimming state. It supports only one Node ID. A controller/gateway SHOULD be associated to this AG.
Association group 1 supports 1 node.
### Group 2: Basic Set Command
Basic Set Command
2nd AG: to control the associated devices synchronously. When S1s state changes, it will send “Basic Set Command” to these devices. It supports upto 5 Node IDs.
Association group 2 supports 5 nodes.
### Group 3: Multi-level Set Command
AG: to control the associated devices synchronously. When S1s state changes, it will send
“Multi-level Set Command” to these devices. It supports upto 5 Node IDs.
Association group 3 supports 5 nodes.
## Technical Information
### Endpoints
#### Endpoint 0
| Command Class | Comment |
|---------------|---------|
| COMMAND_CLASS_NO_OPERATION_V1| |
| COMMAND_CLASS_BASIC_V1| |
| COMMAND_CLASS_SWITCH_MULTILEVEL_V2| |
| COMMAND_CLASS_SWITCH_ALL_V1| |
| COMMAND_CLASS_SCENE_ACTIVATION_V1| |
| COMMAND_CLASS_SCENE_ACTUATOR_CONF_V1| |
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
| COMMAND_CLASS_CONFIGURATION_V1| |
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_POWERLEVEL_V1| |
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
| COMMAND_CLASS_ASSOCIATION_V2| |
| COMMAND_CLASS_VERSION_V2| |
### Documentation Links
* [Manual](https://www.cd-jackson.com/zwave_device_uploads/929/MH-P311.pdf)
---
Did you spot an error in the above definition or want to improve the content?
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/929).

View File

@ -0,0 +1,289 @@
---
layout: documentation
title: 10002034-13x - ZWave
---
{% include base.html %}
# 10002034-13x Simon IO: Roller Blind
This describes the Z-Wave device *10002034-13x*, manufactured by *SimonTech S.L.U* with the thing type UID of ```simontech_1000203413x_00_000```.
The device is in the category of *Blinds*, defining Roller shutters, window blinds, etc..
![10002034-13x product image](https://www.cd-jackson.com/zwave_device_uploads/930/930_default.jpg)
The 10002034-13x supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is also able to participate in the routing of data between other devices in the mesh network.
## Overview
Roller Blind IO is ready to operate with Z-Wave controllers and configured to be managed by Simon100 IO APP using the HUB plug IO for getting a better user experience. Sending the Blind Up/Down or setting a specific position.
### Inclusion Information
When the pushbutton is released after a press of (2<T<10sec) the device will send a NIF to include from Z-Wave network or perform an association with other Z-Wave device.
Central LED will Blink with 0,3 sec period to inform that NIF can be send after release of pushbutton.
This process does not perform a default reset of configurations.
Main LED will Blink with 0,3 sec period to inform that NIF can be send after release of pushbutton.
### Exclusion Information
When the pushbutton is released after a press of (2<T<10sec) the device will send a NIF to exclude from Z-Wave network or perform an association with other Z-Wave device.
Main LED will Blink with 0,3 sec period to inform that NIF can be send after release of pushbutton.
This process does not perform a default reset of configurations.
Main LED will Blink with 0,3 sec period to inform that NIF can be send after release of pushbutton.
## Channels
The following table summarises the channels available for the 10002034-13x -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Switch | switch_binary | Switch | Switch |
| Dimmer | switch_dimmer | DimmableLight | Dimmer |
### Switch
Switch the power on and off.
The ```switch_binary``` channel supports the ```Switch``` item and is in the ```Switch``` category.
### Dimmer
The brightness channel allows to control the brightness of a light.
It is also possible to switch the light on and off.
The ```switch_dimmer``` channel supports the ```Dimmer``` item and is in the ```DimmableLight``` category.
## Device Configuration
The following table provides a summary of the 9 configuration parameters available in the 10002034-13x.
Detailed information on each parameter can be found in the sections below.
| Param | Name | Description |
|-------|-------|-------------|
| 1 | Association LED | Activates the Central LED. |
| 4 | Up Time | Up Time |
| 5 | Down Time | Down Time |
| 9 | Calibration | Calibration |
| 12 | Behavior of LED in Repose | Configuration of Main LED as identification at 20%. |
| 13 | Lock Input | Unlock/lock the direct control of load. |
| 21 | Load State | Load State (Read Only) |
| 23 | Calibration Required | Calibration Required (Read Only) |
| 27 | Lock long press | 7 Lock long press |
### Parameter 1: Association LED
Activates the Central LED.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Turns the LED OFF (default) |
| 255 | Turns the LED ON |
The manufacturer defined default value is ```0``` (Turns the LED OFF (default)).
This parameter has the configuration ID ```config_1_1``` and is of type ```INTEGER```.
### Parameter 4: Up Time
Up Time
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 1 | Sets the UP time in seconds |
| 60 | Default |
The manufacturer defined default value is ```60``` (Default).
This parameter has the configuration ID ```config_4_1``` and is of type ```INTEGER```.
This is a read only parameter.
### Parameter 5: Down Time
Down Time
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 1 | Sets the DOWN time in seconds |
| 60 | Default |
The manufacturer defined default value is ```60``` (Default).
This parameter has the configuration ID ```config_5_1``` and is of type ```INTEGER```.
### Parameter 9: Calibration
Calibration
255 - The device will perform a calibration process in order to Set the UP and DOWN times automatically
Values in the range 255 to 255 may be set.
The manufacturer defined default value is ```255```.
This parameter has the configuration ID ```config_9_1_wo``` and is of type ```INTEGER```.
This is a write only parameter.
### Parameter 12: Behavior of LED in Repose
Configuration of Main LED as identification at 20%.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | LED OFF |
| 255 | LED ON at 20% of maximum level |
The manufacturer defined default value is ```0``` (LED OFF).
This parameter has the configuration ID ```config_12_1``` and is of type ```INTEGER```.
### Parameter 13: Lock Input
Unlock/lock the direct control of load.
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Unlock the direct control of load. |
| 255 | Lock the direct control of load. |
The manufacturer defined default value is ```0``` ( Unlock the direct control of load.).
This parameter has the configuration ID ```config_13_1``` and is of type ```INTEGER```.
### Parameter 21: Load State
Load State (Read Only)
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Bit 0: Load is OFF |
| 0 | Bit 1: Sunblind position 0% |
| 1 | Bit 0: Load is going UP/DOWN |
| 99 | Bit 1: Sunblind position 99% |
The manufacturer defined default value is ```0``` (Bit 1: Sunblind position 0%).
This parameter has the configuration ID ```config_21_2``` and is of type ```INTEGER```.
This is a read only parameter.
### Parameter 23: Calibration Required
Calibration Required (Read Only)
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Calibration is not required. |
| 255 | It is necessary to calibrate the device. |
The manufacturer defined default value is ```0``` (Calibration is not required.).
This parameter has the configuration ID ```config_23_1``` and is of type ```INTEGER```.
This is a read only parameter.
### Parameter 27: Lock long press
7 Lock long press
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Long press works as default. |
| 255 | Long press works as overview. |
The manufacturer defined default value is ```0``` (Long press works as default.).
This parameter has the configuration ID ```config_27_1``` 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 10002034-13x 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.
Lifeline
Change on Sunblind position:
* On -> CC Basic, Basic Report.
* Value 0x01 - 0x63 Report sunblind position
Calibration requirement change. (If device needs to be calibrated and is Added into a ZWave network, it will report after receive an Association Set of life line).
* Calibration required -> CC Configuration, Configuration Report, Param 23, Value 0xF
* Calibration not required -> CC Configuration, Configuration Report, Param 23, Value 0x00
Association group 1 supports 3 nodes.
### Group 2: ctrl
Control
Change on Sunblind position:
* CC Basic, Basic Report.
* Value 0x00 - 0x63 Report sunblind position
Association group 2 supports 20 nodes.
## Technical Information
### Endpoints
#### Endpoint 0
| Command Class | Comment |
|---------------|---------|
| COMMAND_CLASS_NO_OPERATION_V1| |
| COMMAND_CLASS_BASIC_V1| |
| COMMAND_CLASS_SWITCH_BINARY_V1| |
| COMMAND_CLASS_SWITCH_MULTILEVEL_V3| |
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
| COMMAND_CLASS_CONFIGURATION_V1| |
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_POWERLEVEL_V1| |
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
| COMMAND_CLASS_ASSOCIATION_V2| |
| COMMAND_CLASS_VERSION_V2| |
### Documentation Links
* [Manual](https://www.cd-jackson.com/zwave_device_uploads/930/ROLLERBLIND-991025-990913.pdf)
---
Did you spot an error in the above definition or want to improve the content?
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/930).

View File

@ -0,0 +1,265 @@
---
layout: documentation
title: YRL210 - ZWave
---
{% include base.html %}
# YRL210 Yale Push Button Lever Lock
This describes the Z-Wave device *YRL210*, manufactured by *ASSA ABLOY* with the thing type UID of ```yale_yrl210_00_000```.
The device is in the category of *Lock*, defining Devices whose primary pupose is locking something.
![YRL210 product image](https://www.cd-jackson.com/zwave_device_uploads/933/933_default.jpg)
The YRL210 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.
## Overview
Secure your home with this Yale Real Living electronic lever lock and enjoy the convenience of unlocking and locking your door using the back lit push button keypad; you'll never have to carry around your keys again. Create unique pin codes for friends and family and remove codes whenever you need to.
The lock is Grade 2 certified and backed Yale, one of the world's best known brands in the lock industry that's been securing homes since 1846, ensuring that your home and family is always safe.
### Inclusion Information
To include the lock in a Z-Wave Network (taken from the installation manual):
1. Touch the lock screen to activate
2. Enter the master pin and press #
3. Press 7, then #
4. Press 1, then #
The lock will now be in inclusion mode.
### Exclusion Information
To exclude the lock from a Z-Wave Network (taken from the installation manual):
1. Touch the lock screen to activate
2. Enter the master pin and press #
3. Press 7, then #
4. Press 3, then #
The lock will now be in exclusion mode.
## Channels
The following table summarises the channels available for the YRL210 -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Door Lock | lock_door | Door | Switch |
| Alarm | alarm_general | Door | Switch |
| Battery Level | battery-level | Battery | Number |
| Clock Time Offset | time_offset | Temperature | Number |
### Door Lock
Lock and unlock the door.
The ```lock_door``` channel supports the ```Switch``` item and is in the ```Door``` category.
The following state translation is provided for this channel to the ```Switch``` item type -:
| Value | Label |
|-------|-----------|
| ON | Locked |
| OFF | Unlocked |
### Alarm
Indicates if an alarm is triggered.
The ```alarm_general``` channel 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 ```battery-level``` channel supports the ```Number``` item and is in the ```Battery``` category.
### Clock Time Offset
Provides the current time difference for the devices time.
The ```time_offset``` channel supports the ```Number``` item and is in the ```Temperature``` category.
## Device Configuration
The following table provides a summary of the 7 configuration parameters available in the YRL210.
Detailed information on each parameter can be found in the sections below.
| Param | Name | Description |
|-------|-------|-------------|
| 1 | Audio Mode | |
| 2 | Auto relock | |
| 3 | Relock time | Time to relock after unlocking (seconds) |
| 4 | Wrong Code Entry Limit | Invalid unlock attempts before shutdown/alarm |
| 5 | Language | |
| 7 | Shutdown Time | Invalid unlock attempts before lock out |
| 8 | Operating Mode | Operating mode (normal/vacation/privacy) |
| | Lock Timeout | Sets the time after which the door will auto lock |
### Parameter 1: Audio Mode
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 1 | Silent |
| 2 | Low |
| 3 | High |
The manufacturer defined default value is ```3``` (High).
This parameter has the configuration ID ```config_1_1``` and is of type ```INTEGER```.
### Parameter 2: Auto relock
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Off |
| 255 | On |
The manufacturer defined default value is ```255``` (On).
This parameter has the configuration ID ```config_2_1``` and is of type ```INTEGER```.
### Parameter 3: Relock time
Time to relock after unlocking (seconds)
Values in the range 5 to 255 may be set.
The manufacturer defined default value is ```30```.
This parameter has the configuration ID ```config_3_1``` and is of type ```INTEGER```.
### Parameter 4: Wrong Code Entry Limit
Invalid unlock attempts before shutdown/alarm
Values in the range 1 to 7 may be set.
The manufacturer defined default value is ```5```.
This parameter has the configuration ID ```config_4_1``` and is of type ```INTEGER```.
### Parameter 5: Language
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 1 | English |
| 2 | Spanish |
| 3 | French |
The manufacturer defined default value is ```1``` (English).
This parameter has the configuration ID ```config_5_1``` and is of type ```INTEGER```.
### Parameter 7: Shutdown Time
Invalid unlock attempts before lock out
Values in the range 1 to 255 may be set.
The manufacturer defined default value is ```30```.
This parameter has the configuration ID ```config_7_1``` and is of type ```INTEGER```.
### Parameter 8: Operating Mode
Operating mode (normal/vacation/privacy)
0 = Normal
1 = Vacation Mode (User Codes Disabled)
2 = Privacy Mode (User Codes and Z-Wave Disabled)
The following option values may be configured -:
| Value | Description |
|--------|-------------|
| 0 | Normal |
| 1 | Vacation |
| 2 | Privacy |
The manufacturer defined default value is ```0``` (Normal).
This parameter has the configuration ID ```config_8_1``` and is of type ```INTEGER```.
### Lock Timeout
Sets the time after which the door will auto lock.
This parameter has the configuration ID ```doorlock_timeout``` 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 YRL210 supports 1 association group.
### Group 1: Alarm Reports
Association group 1 supports 4 nodes.
## Technical Information
### Endpoints
#### Endpoint 0
| Command Class | Comment |
|---------------|---------|
| COMMAND_CLASS_NO_OPERATION_V1| |
| COMMAND_CLASS_BASIC_V1| |
| COMMAND_CLASS_DOOR_LOCK_LOGGING_V1| |
| COMMAND_CLASS_SCHEDULE_ENTRY_LOCK_V1| |
| COMMAND_CLASS_DOOR_LOCK_V1| |
| COMMAND_CLASS_USER_CODE_V1| |
| COMMAND_CLASS_CONFIGURATION_V1| |
| COMMAND_CLASS_ALARM_V1| |
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_PROTECTION_V2| |
| COMMAND_CLASS_BATTERY_V1| |
| COMMAND_CLASS_ASSOCIATION_V1| |
| COMMAND_CLASS_VERSION_V1| |
| COMMAND_CLASS_TIME_V1| |
| COMMAND_CLASS_TIME_PARAMETERS_V1| |
| COMMAND_CLASS_SECURITY_V1| |
### Documentation Links
* [Yale YRL210 Manual](https://www.cd-jackson.com/zwave_device_uploads/933/Yale-YRL210-Manual.pdf)
---
Did you spot an error in the above definition or want to improve the content?
You can [contribute to the database here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/933).

View File

@ -39,7 +39,7 @@ The following table summarises the channels available for the PAN08 -:
| Channel | Channel Id | Category | Item Type |
|---------|------------|----------|-----------|
| Dimmer | switch_dimmer | DimmableLight | Dimmer |
| Blinds Control | blinds_control | Blinds | Rollershutter |
| Scene Number | scene_number | | Number |
| Electric meter (kWh) | meter_kwh | Energy | Number |
| Electric meter (amps) | meter_current | Energy | Number |
@ -48,12 +48,11 @@ The following table summarises the channels available for the PAN08 -:
| Electric meter (power factor) | meter_powerfactor | Energy | Number |
| Alarm | alarm_general | Door | Switch |
### Dimmer
### Blinds Control
The brightness channel allows to control the brightness of a light.
It is also possible to switch the light on and off.
Provides start / stop control of blinds.
The ```switch_dimmer``` channel supports the ```Dimmer``` item and is in the ```DimmableLight``` category.
The ```blinds_control``` channel supports the ```Rollershutter``` item and is in the ```Blinds``` category.
### Scene Number
@ -196,8 +195,8 @@ Association group 1 supports 1 node.
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
| COMMAND_CLASS_POWERLEVEL_V1| |
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
| COMMAND_CLASS_ASSOCIATION_V2| |
| COMMAND_CLASS_VERSION_V2| |
| COMMAND_CLASS_ASSOCIATION_V1| |
| COMMAND_CLASS_VERSION_V1| |
### Documentation Links