updated generated content
parent
747b0e5057
commit
e8cbf52986
|
@ -19,5 +19,5 @@ Prowl lets you use push notifications on iOS devices (please check openhab.cfg f
|
|||
|
||||
## Actions
|
||||
|
||||
* `pushNotification(String subject, String message)`: Pushes a Prowl Notification
|
||||
* `pushNotification(String apikey, String subject, String message, int priority)`: Pushes a Prowl Notification with the given priority
|
||||
- `pushNotification(String subject, String message)`: Pushes a Prowl Notification
|
||||
- `pushNotification(String apikey, String subject, String message, int priority)`: Pushes a Prowl Notification with the given priority
|
||||
|
|
|
@ -23,31 +23,33 @@ The Pushbullet action allows you to notify iOS, Android & Windows 10 Phone & Des
|
|||
The following is a valid action call that can be made when the plugin is loaded.
|
||||
For specific information on each item, see the [Pushbullet API](https://docs.pushbullet.com/).
|
||||
|
||||
* `sendPushbulletNote(String receiver, String title, String message)`
|
||||
* `sendPushbulletNote(String botname, String receiver, String title, String message)`
|
||||
- `sendPushbulletNote(String receiver, String title, String message)`
|
||||
- `sendPushbulletNote(String botname, String receiver, String title, String message)`
|
||||
|
||||
## Examples
|
||||
|
||||
```
|
||||
```java
|
||||
sendPushbulletNote("mybot", "someone@somewhere.com", "this is the title", "And this is the body of the message")
|
||||
```
|
||||
|
||||
## Creating an account for your bot(s)
|
||||
|
||||
The pushbullet accounts are bound to either Google or Facebook accounts.
|
||||
* Go to "<https://www.pushbullet.com/>"
|
||||
* Chose to either "Sign up with Google" or "Sign up with Facebook".
|
||||
* Complete the signup process as guided by the pushbullet web site.
|
||||
* Continue with "Obtaining an API key".
|
||||
|
||||
- Go to "<https://www.pushbullet.com/>"
|
||||
- Chose to either "Sign up with Google" or "Sign up with Facebook".
|
||||
- Complete the signup process as guided by the pushbullet web site.
|
||||
- Continue with "Obtaining an API key".
|
||||
|
||||
## Obtaining an API key
|
||||
|
||||
The API keys are bound to the pushbullet account.
|
||||
* Go to the pushbullet site.
|
||||
* Log in with either your personal account or the one you created for your bot.
|
||||
* Go to "<https://www.pushbullet.com/#settings/account>"
|
||||
* Click on "Create Access Token".
|
||||
* Copy the token created on the site.
|
||||
|
||||
- Go to the pushbullet site.
|
||||
- Log in with either your personal account or the one you created for your bot.
|
||||
- Go to "<https://www.pushbullet.com/#settings/account>"
|
||||
- Click on "Create Access Token".
|
||||
- Copy the token created on the site.
|
||||
|
||||
You must at least provide an API token (Private or Alias Key from Pushbullet.com) and a message in some manner before a message can be pushed.
|
||||
All other parameters are optional.
|
||||
|
@ -65,5 +67,5 @@ Both of those libraries use various libraries themselves which makes integrating
|
|||
|
||||
## pushbullet API
|
||||
|
||||
* <https://docs.pushbullet.com/>
|
||||
* <https://docs.pushbullet.com/#push-limit>
|
||||
- <https://docs.pushbullet.com/>
|
||||
- <https://docs.pushbullet.com/#push-limit>
|
||||
|
|
|
@ -22,7 +22,7 @@ The Pushsafer action allows you to notify iOS, Android & Windows 10 Phone & Desk
|
|||
The following is a valid action call that can be made when the plugin is loaded.
|
||||
For specific information on each item, see the [Pushsafer API](https://www.pushsafer.com/en/pushapi).
|
||||
|
||||
```
|
||||
```java
|
||||
pushsafer(String apiToken, String message, String title, String device, String icon, String vibration, String sound)
|
||||
```
|
||||
|
||||
|
|
|
@ -23,11 +23,11 @@ Satel Binding v1.x must be installed and configured in order to use Satel action
|
|||
|
||||
## Actions
|
||||
|
||||
* `boolean satelIsConnected()` - returns `true` if connected to communication module and `false` otherwise
|
||||
* `Object[] satelReadEvent(int eventIndex)` - reads event log record for given index; records must be read one by one from most recent record under index `-1`; see record description below
|
||||
* `String satelReadDeviceName(String deviceType, int deviceNumber)` - reads description of a device; device type must be one of PARTITION, ZONE, USER, EXPANDER, LCD, OUTPUT, TIMER, TELEPHONE, OBJECT
|
||||
* `void satelSetUserCode(String newUserCode)` - overrides configured user code to a given one; allows to execute commands not available for default user configured in the settings
|
||||
* `void satelResetUserCode()` - reverts user code set by `satelSetUserCode(String newUserCode)` to the value configured in openhab.cfg/satel.cfg.
|
||||
- `boolean satelIsConnected()` - returns `true` if connected to communication module and `false` otherwise
|
||||
- `Object[] satelReadEvent(int eventIndex)` - reads event log record for given index; records must be read one by one from most recent record under index `-1`; see record description below
|
||||
- `String satelReadDeviceName(String deviceType, int deviceNumber)` - reads description of a device; device type must be one of PARTITION, ZONE, USER, EXPANDER, LCD, OUTPUT, TIMER, TELEPHONE, OBJECT
|
||||
- `void satelSetUserCode(String newUserCode)` - overrides configured user code to a given one; allows to execute commands not available for default user configured in the settings
|
||||
- `void satelResetUserCode()` - reverts user code set by `satelSetUserCode(String newUserCode)` to the value configured in openhab.cfg/satel.cfg.
|
||||
|
||||
### Event record fields
|
||||
|
||||
|
@ -48,7 +48,7 @@ Satel Binding v1.x must be installed and configured in order to use Satel action
|
|||
|
||||
## Examples
|
||||
|
||||
### Rule to send email on each alarm with 10 most recent records from the event log
|
||||
### Send email on alarm with 10 most recent event log entries
|
||||
|
||||
satel.rules
|
||||
|
||||
|
@ -170,7 +170,7 @@ String Keypad_Char ">"
|
|||
|
||||
satel.sitemap
|
||||
|
||||
```
|
||||
```java
|
||||
Text label="Enter user code" icon="settings" {
|
||||
Switch item=Keypad_Char mappings=[ "1"="1", "2"="2", "3"="3" ]
|
||||
Switch item=Keypad_Char mappings=[ "4"="4", "5"="5", "6"="6" ]
|
||||
|
|
|
@ -18,21 +18,17 @@ install: auto
|
|||
|
||||
Twitter can be used to "tweet" notifications when certain events take place in openHAB.
|
||||
|
||||
|
||||
## Actions
|
||||
|
||||
* `sendTweet(message)`: Send a Tweet
|
||||
* `sendDirectMessage('recipient', 'direct message')`: Send a direct message simply use the following syntax inside a rule or script;
|
||||
|
||||
- `sendTweet(message)`: Send a Tweet
|
||||
- `sendDirectMessage('recipient', 'direct message')`: Send a direct message simply use the following syntax inside a rule or script;
|
||||
|
||||
## Configuration
|
||||
|
||||
The Twitter action service is one of the pre-defined set of actions that is automatically available, and can be used within rules and scripts.
|
||||
You will need to enable "tweeting" by adding the following to the file `services/twitter.cfg`:
|
||||
|
||||
```
|
||||
enabled=true
|
||||
```
|
||||
`enabled=true`
|
||||
|
||||
After enabling, you will then need to authenticate openHAB with Twitter.
|
||||
Typically a new Twitter account would be set up for openHAB, rather than using your personal account, but that is entirely up to you.
|
||||
|
@ -89,7 +85,7 @@ You can now safely delete the `twitter.pin` file if you wish as it is no longer
|
|||
Please beware there are technical limits that apply to your account.
|
||||
The current limits are:
|
||||
|
||||
* Direct messages: 250 per day.
|
||||
* Tweets: 1,000 per day. The daily update limit is further broken down into smaller limits for semi-hourly intervals. Retweets are counted as Tweets.
|
||||
* Following (daily): The technical follow limit is 1,000 per day. Please note that this is a technical account limit only, and there are additional rules prohibiting aggressive following behavior. Details about following limits and prohibited behavior are on the Follow Limits and Best Practices page.
|
||||
* Following (account-based): Once an account is following 2,000 other users, additional follow attempts are limited by account-specific ratios. The Follow Limits and Best Practices page has more information.
|
||||
- Direct messages: 250 per day.
|
||||
- Tweets: 1,000 per day. The daily update limit is further broken down into smaller limits for semi-hourly intervals. Retweets are counted as Tweets.
|
||||
- Following (daily): The technical follow limit is 1,000 per day. Please note that this is a technical account limit only, and there are additional rules prohibiting aggressive following behavior. Details about following limits and prohibited behavior are on the Follow Limits and Best Practices page.
|
||||
- Following (account-based): Once an account is following 2,000 other users, additional follow attempts are limited by account-specific ratios. The Follow Limits and Best Practices page has more information.
|
||||
|
|
|
@ -17,10 +17,10 @@ install: manual
|
|||
|
||||
The Weather Action service provides meteorological information to your scripts and rules.
|
||||
|
||||
* `getHumidex(double temperature, int hygro)`: Compute the Humidex index given temperature in Celsius and hygrometry (relative percent). Returns Humidex index value.
|
||||
* `getBeaufortIndex(double speed)`: Compute the [Beaufort scale](http://en.wikipedia.org/wiki/Beaufort_scale) for a given wind speed in m/s. Returns the Beaufort Index between 0 and 12. `transform/beaufort.map`:
|
||||
- `getHumidex(double temperature, int hygro)`: Compute the Humidex index given temperature in Celsius and hygrometry (relative percent). Returns Humidex index value.
|
||||
- `getBeaufortIndex(double speed)`: Compute the [Beaufort scale](http://en.wikipedia.org/wiki/Beaufort_scale) for a given wind speed in m/s. Returns the Beaufort Index between 0 and 12. `transform/beaufort.map`:
|
||||
|
||||
```
|
||||
```text
|
||||
0=Calm
|
||||
1=Light air
|
||||
2=Light breeze
|
||||
|
@ -36,5 +36,5 @@ The Weather Action service provides meteorological information to your scripts a
|
|||
12=Hurricane force
|
||||
```
|
||||
|
||||
* `getSeaLevelPressure(double pressure, double temp, double altitude)`: Compute the [Sea Level Pressure](http://keisan.casio.com/exec/system/1224575267), given absolute pressure in hPa, temperature in Celsius, and altitude in meters. Returns equivalent sea level pressure.
|
||||
* `getWindDirection(int degree)`: Transform an orientation angle (in degrees) to its cardinal string equivalent. Returns string representing the direction.
|
||||
- `getSeaLevelPressure(double pressure, double temp, double altitude)`: Compute the [Sea Level Pressure](http://keisan.casio.com/exec/system/1224575267), given absolute pressure in hPa, temperature in Celsius, and altitude in meters. Returns equivalent sea level pressure.
|
||||
- `getWindDirection(int degree)`: Transform an orientation angle (in degrees) to its cardinal string equivalent. Returns string representing the direction.
|
||||
|
|
|
@ -20,5 +20,5 @@ Sends notifications to the Kodi open source home theater software (formerly know
|
|||
|
||||
## Actions
|
||||
|
||||
* `sendXbmcNotification(host, port, title, message)`: Sends a message to a given XBMC instance
|
||||
* `sendXbmcNotification(host, port, title, message, image, displayTime)`: Sends a message to a given XBMC instance (image=a URL pointing to an image, displayTime=a display time for the message in milliseconds)
|
||||
- `sendXbmcNotification(host, port, title, message)`: Sends a message to a given XBMC instance
|
||||
- `sendXbmcNotification(host, port, title, message, image, displayTime)`: Sends a message to a given XBMC instance (image=a URL pointing to an image, displayTime=a display time for the message in milliseconds)
|
||||
|
|
|
@ -20,9 +20,9 @@ This set of actions allows you to send a message to an XMPP user or multi-user c
|
|||
|
||||
## Actions
|
||||
|
||||
* `sendXMPP(String to, String message)`: Sends a message to an XMPP user
|
||||
* `sendXMPP(String to, String message, String attachmentUrl)`: Sends a message with an attachment to an XMPP user
|
||||
* `chatXMPP(String message)`: Sends a message to a multi user chat
|
||||
- `sendXMPP(String to, String message)`: Sends a message to an XMPP user
|
||||
- `sendXMPP(String to, String message, String attachmentUrl)`: Sends a message with an attachment to an XMPP user
|
||||
- `chatXMPP(String message)`: Sends a message to a multi user chat
|
||||
|
||||
## Configuration
|
||||
|
||||
|
@ -42,13 +42,12 @@ The XMPP Action service can be configured in `services/xmpp.cfg`.
|
|||
| chatnickname | `openhab-bot` | No | The nickname used in the multi-user chat |
|
||||
| chatpassword | | | The password required to join the multi user chat |
|
||||
|
||||
|
||||
Note: openHAB does not resolve SRV entries like other XMPP clients do, you have to setup the server details manually.
|
||||
Generally, if `joe@example.org` is your XMPP user ID and `xmpp.example.net` points to the server running the service, set `servername` to the actual server `xmpp.example.net`, the user name `username` to `joe` and `proxy` to the domain name part of your user ID `example.org`.
|
||||
|
||||
## Example: Google
|
||||
|
||||
```
|
||||
```java
|
||||
servername=talk.google.com
|
||||
securitymode=required
|
||||
# You need this "tlspin" if openhab cannot verify the certificate from the google server
|
||||
|
|
|
@ -0,0 +1,43 @@
|
|||
---
|
||||
id: bluetooth.bluez
|
||||
label: Bluetooth BlueZ Adapter
|
||||
title: Bluetooth BlueZ Adapter - Bindings
|
||||
type: binding
|
||||
description: "This extension supports Bluetooth access via BlueZ on Linux (ARMv6hf)."
|
||||
since: 2x
|
||||
install: manual
|
||||
---
|
||||
|
||||
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
## Bluetooth BlueZ Adapter
|
||||
|
||||
This extension supports Bluetooth access via BlueZ on Linux (ARMv6hf).
|
||||
|
||||
## Supported Things
|
||||
|
||||
It defines the following bridge type:
|
||||
|
||||
| Bridge Type ID | Description |
|
||||
|----------------|---------------------------------------------------------------------------|
|
||||
| bluez | A Bluetooth adapter that is supported by BlueZ |
|
||||
|
||||
|
||||
## Discovery
|
||||
|
||||
If BlueZ is enabled and can be accessed, all available adapters are automatically discovered.
|
||||
|
||||
## Bridge Configuration
|
||||
|
||||
The bluez bridge requires the configuration parameter `address`, which corresponds to the Bluetooth address of the adapter (in format "XX:XX:XX:XX:XX:XX").
|
||||
Additionally, the parameter `discovery` can be set to true/false.When set to true, any Bluetooth device of which broadcasts are received is added to the Inbox.
|
||||
|
||||
## Example
|
||||
|
||||
This is how an BlueZ adapter can be configured textually in a *.things file:
|
||||
|
||||
```
|
||||
Bridge bluetooth:bluez:hci0 [ address="12:34:56:78:90:AB", discovery=false ]
|
||||
```
|
|
@ -0,0 +1,87 @@
|
|||
---
|
||||
id: bluetooth
|
||||
label: Bluetooth
|
||||
title: Bluetooth - Bindings
|
||||
type: binding
|
||||
description: "This binding provides support for generic Bluetooth devices."
|
||||
since: 2x
|
||||
logo: images/addons/bluetooth.png
|
||||
install: auto
|
||||
---
|
||||
|
||||
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# Bluetooth Binding
|
||||
|
||||
This binding provides support for generic Bluetooth devices.
|
||||
|
||||
## Bridges
|
||||
|
||||
In order to function, this binding requires a Bluetoooth adapter to be present, which handles the wireless communication.
|
||||
As there is no standard in Bluetooth for such dongles resp. chips, different adapters require a different implementation.
|
||||
This is why the Bluetooth binding itself does not come with any bridge handlers for such adapters itself, but instead is extensible by additional bundles which can implement support for a specific adapter.
|
||||
|
||||
For Linux, there exists a special bundle which provides a Bluetooth bridge that talks to BlueZ.
|
||||
This should be the best choice for any Linux-based single board computers like e.g. the Raspberry Pi.
|
||||
|
||||
## Supported Things
|
||||
|
||||
Two thing types are supported by this binding:
|
||||
|
||||
| Thing Type ID | Description |
|
||||
|---------------|---------------------------------------------------------------------------------------------------------|
|
||||
| beacon | A Bluetooth device that is not connected, but only broadcasts annoucements. |
|
||||
| connected | A Bluetooth device that allows a direct connection and which provides specific services when connected. |
|
||||
|
||||
|
||||
## Discovery
|
||||
|
||||
Discovery is performed through the Bluetooth bridge.
|
||||
Normally, any broadcasting Bluetooth device can be uniquely identified and thus a bridge can create an inbox result for it.
|
||||
As this might lead to a huge list of devices, bridges usually also offer a way to deactivate this behavior.
|
||||
|
||||
## Thing Configuration
|
||||
|
||||
Both thing types only require a single configuration parameter `address`, which corresponds to the Bluetooth address of the device (in format "XX:XX:XX:XX:XX:XX").
|
||||
|
||||
## Channels
|
||||
|
||||
Every Bluetooth thing has the following channel:
|
||||
|
||||
| Channel ID | Item Type | Description |
|
||||
|------------|-----------|-----------------------------------------------------------------------------------------------------|
|
||||
| rssi | Number | The "Received Signal Strength Indicator", the [RSSI](https://blog.bluetooth.com/proximity-and-rssi) |
|
||||
|
||||
`connected` Things are dynamically queried for their services and if they support certain standard GATT characteristics, the appropriate channels are automatically added as well:
|
||||
|
||||
| Channel ID | Item Type | Description |
|
||||
|---------------|-----------|-----------------------------------------------------------------|
|
||||
| battery_level | Number | The device's battery level in percent |
|
||||
|
||||
|
||||
## Full Example
|
||||
|
||||
demo.things (assuming you have a Bluetooth bridge with the ID `bluetooth:bluez:hci0`):
|
||||
|
||||
```
|
||||
bluetooth:beacon:hci0:b1 "BLE Beacon" (bluetooth:bluez:hci0) [ address="68:64:4C:14:FC:C4" ]
|
||||
```
|
||||
|
||||
demo.items:
|
||||
|
||||
```
|
||||
Number Beacon_RSSI "My Beacon [%.0f]" { channel="bluetooth:beacon:hci0:b1:rssi" }
|
||||
```
|
||||
|
||||
demo.sitemap:
|
||||
|
||||
```
|
||||
sitemap demo label="Main Menu"
|
||||
{
|
||||
Frame {
|
||||
Text item=Beacon_RSSI
|
||||
}
|
||||
}
|
||||
```
|
|
@ -6,7 +6,7 @@ type: binding
|
|||
description: "The openHAB Mystrom binding allows you to send commands to Mystrom Eco Power Switches, receive consumption numbers and states of devices."
|
||||
source: https://github.com/openhab/openhab1-addons/blob/master/bundles/binding/org.openhab.binding.mystromecopower/README.md
|
||||
since: 1x
|
||||
install: manual
|
||||
install: auto
|
||||
---
|
||||
|
||||
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||
|
|
|
@ -88,6 +88,7 @@ The weather information that is retrieved is available as these channels:
|
|||
| Current | windSpeed | Number | Wind speed | SourceUnit: "kmh" or "mph"; default is "kmh" |
|
||||
| Current | windGust | Number | Wind gust | SourceUnit: "kmh" or "mph"; default is "kmh" |
|
||||
| Current | pressure | Number | Pressure | SourceUnit: "hPa" or "inHg"; default is "hPa" |
|
||||
| Current | pressureTrend | String | Pressure trend ("up", "stable" or "down") | |
|
||||
| Current | dewPoint | Number | Dew Point temperature | SourceUnit: "C" for degrees Celsius or "F" for degrees Fahrenheit; default is "C" |
|
||||
| Current | heatIndex | Number | Heat Index | SourceUnit: "C" for degrees Celsius or "F" for degrees Fahrenheit; default is "C" |
|
||||
| Current | windChill | Number | Wind chill temperature | SourceUnit: "C" for degrees Celsius or "F" for degrees Fahrenheit; default is "C" |
|
||||
|
@ -98,6 +99,7 @@ The weather information that is retrieved is available as these channels:
|
|||
| Current | precipitationDay | Number | Rain fall during the day | SourceUnit: "mm" or "in"; default is "mm" |
|
||||
| Current | precipitationHour | Number | Rain fall during the last hour | SourceUnit: "mm" or "in"; default is "mm" |
|
||||
| Current | icon | Image | Icon representing the weather current conditions | |
|
||||
| Current | iconKey | String | Key used in the icon URL | |
|
||||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | forecastTime | DateTime | Forecast date and time | |
|
||||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | conditions | String | Weather forecast conditions | |
|
||||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | minTemperature | Number | Minimum temperature | SourceUnit: "C" for degrees Celsius or "F" for degrees Fahrenheit; default is "C" |
|
||||
|
@ -113,6 +115,7 @@ The weather information that is retrieved is available as these channels:
|
|||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | averageWindDirectionDegrees | Number | Average wind direction in degrees | |
|
||||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | averageWindSpeed | Number | Average wind speed | SourceUnit: "kmh" or "mph"; default is "kmh" |
|
||||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | icon | Image | Icon representing the weather forecast conditions | |
|
||||
| forecastToday forecastTomorrow forecastDay2 ... forecastDay9 | iconKey | String | Key used in the icon URL | |
|
||||
|
||||
|
||||
## Full Example
|
||||
|
@ -147,6 +150,7 @@ demo.items:
|
|||
```
|
||||
String Conditions "Conditions [%s]" {channel="weatherunderground:weather:CDG:current#conditions"}
|
||||
Image Icon "Icon" {channel="weatherunderground:weather:CDG:current#icon"}
|
||||
String IconKey "Icon key [%s]" {channel="weatherunderground:weather:CDG:current#iconKey"}
|
||||
DateTime ObservationTime "Observation time [%1$tH:%1$tM]" <clock> {channel="weatherunderground:weather:CDG:current#observationTime"}
|
||||
String ObservationLocation "Location [%s]" {channel="weatherunderground:weather:CDG:current#location"}
|
||||
String Station "Station [%s]" {channel="weatherunderground:weather:CDG:current#stationId"}
|
||||
|
@ -156,6 +160,7 @@ Number FeelTemp "Feeling temperature [%.1f °C]" <temperature> {channel="weathe
|
|||
|
||||
Number Humidity "Humidity [%d %%]" <humidity> {channel="weatherunderground:weather:CDG:current#relativeHumidity"}
|
||||
Number Pressure "Pressure [%.0f hPa]" {channel="weatherunderground:weather:CDG:current#pressure"}
|
||||
Number PressureTrend "Pressure trend [%s]" {channel="weatherunderground:weather:CDG:current#pressureTrend"}
|
||||
|
||||
Number RainD "Rain [%.1f mm]" <rain> {channel="weatherunderground:weather:CDG:current#precipitationDay"}
|
||||
Number RainH "Rain [%.1f mm/h]" <rain> {channel="weatherunderground:weather:CDG:current#precipitationHour"}
|
||||
|
@ -175,6 +180,7 @@ Number UV "UV Index [%.1f]" {channel="weatherunderground:weather:CDG:current#UVI
|
|||
DateTime ForecastTime "Forecast time [%1$tH:%1$tM]" <clock> {channel="weatherunderground:weather:CDG:forecastToday#forecastTime"}
|
||||
String ForecastCondition "Forecast conditions [%s]" {channel="weatherunderground:weather:CDG:forecastToday#conditions"}
|
||||
Image ForecastIcon "Forecast icon" {channel="weatherunderground:weather:CDG:forecastToday#icon"}
|
||||
String ForecastIconKey "Forecast icon key [%s]" {channel="weatherunderground:weather:CDG:forecastToday#iconKey"}
|
||||
Number ForecastTempMin "Forecast min temp [%.1f °C]" <temperature> {channel="weatherunderground:weather:CDG:forecastToday#minTemperature"}
|
||||
Number ForecastTempMax "Forecast max temp [%.1f °C]" <temperature> {channel="weatherunderground:weather:CDG:forecastToday#maxTemperature"}
|
||||
Number ForecastHumidity "Forecast Humidity [%d %%]" <humidity> {channel="weatherunderground:weather:CDG:forecastToday#relativeHumidity"}
|
||||
|
|
|
@ -74,6 +74,7 @@ The following devices have been tested with the binding
|
|||
| Tradfri Bulbs | |
|
||||
| Tradfri Motion Sensor | |
|
||||
| Trust Bulbs | *note1* |
|
||||
| Ubisys modules | D1 Dimmer, S1/S2 Switch modules |
|
||||
|
||||
Note 1: Some bulbs may not work with the Telegesis dongle.
|
||||
|
||||
|
|
|
@ -124,6 +124,8 @@ Detailed information on each parameter can be found below.
|
|||
| 5: Motion Sensor Triggered Command | |
|
||||
| 8: Timeout after wake up | Set the timeout of awake after the Wake Up CC is sent out... |
|
||||
| 9: Report the current power mode | Report the current power mode and the product state of battery power mode |
|
||||
| 9: Sleep State | |
|
||||
| 9: Power Mode | |
|
||||
| 39: Low Battery Report | Report Low Battery if below this value |
|
||||
| 40: Selective Reporting | Select to report on thresholds |
|
||||
| 41: Temperature Threshold Unit | Sets the unit of the threshold |
|
||||
|
@ -192,7 +194,7 @@ Enable/Disable waking up for 10 minutes when re-power on (battery mode) the Mult
|
|||
| Configuration ID | config_2_1 |
|
||||
| Data Type | INTEGER || Default Value | 0 |
|
||||
| Options | Disable (0) |
|
||||
| | enable (1) |
|
||||
| | Enable (1) |
|
||||
|
||||
|
||||
#### 3: Motion Sensor reset timeout
|
||||
|
@ -281,10 +283,41 @@ NOTE: this parameter cannot be used as Get/Set usage
|
|||
|------------------|----------|
|
||||
| Configuration ID | config_9_2 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 0 to 1 |
|
||||
| Range | 0 to 65535 |
|
||||
| Default Value | 0 |
|
||||
|
||||
|
||||
**NOTE:** This parameter is read-only.
|
||||
|
||||
|
||||
#### 9: Sleep State
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_9_2_00000001 |
|
||||
| Data Type | INTEGER || Default Value | 0 |
|
||||
| Options | Asleep (0) |
|
||||
| | Awake (1) |
|
||||
|
||||
|
||||
**NOTE:** This parameter is read-only.
|
||||
|
||||
|
||||
#### 9: Power Mode
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_9_2_00000100 |
|
||||
| Data Type | INTEGER || Default Value | 0 |
|
||||
| Options | USB (0) |
|
||||
| | Battery (1) |
|
||||
|
||||
|
||||
**NOTE:** This parameter is read-only.
|
||||
|
||||
|
||||
#### 39: Low Battery Report
|
||||
|
||||
Report Low Battery if below this value
|
||||
|
@ -789,6 +822,9 @@ Bit 7 = ultraviolet
|
|||
| Default Value | 0 |
|
||||
|
||||
|
||||
**NOTE:** This parameter is read-only.
|
||||
|
||||
|
||||
#### 64: Default unit of the automatic temperature report
|
||||
|
||||
Default unit of the automatic temperature report
|
||||
|
|
|
@ -0,0 +1,112 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: ZWN-BPC - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# ZWN-BPC PIR Sensor
|
||||
|
||||
This describes the Z-Wave device *ZWN-BPC*, manufactured by *Wenzhou MTLC Electric Appliances Co.,Ltd.* with the thing type UID of ```enerwave_zwnbpc_05_010```.
|
||||
|
||||
PIR Sensor
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the ZWN-BPC PIR Sensor.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Binary Sensor | sensor_binary | sensor_binary | Door | Switch |
|
||||
| Alarm (burglar) | alarm_burglar | alarm_burglar | Door | Switch |
|
||||
| | battery-level | system.battery-level | | |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the ZWN-BPC PIR Sensor.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 1: Motion timeout | Multiplier to wakeup timer interval |
|
||||
| 1: Lifeline | |
|
||||
| 2: Basic Report | |
|
||||
| 3: Notification Report | |
|
||||
| 4: Basic Set | |
|
||||
|
||||
|
||||
#### 1: Motion timeout
|
||||
|
||||
Multiplier to wakeup timer interval
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
It is minimum time when the associated nodes keep turn on
|
||||
|
||||
n:1-7 (n\*WAKE\_UP\_INTERVAL)
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_1_1 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 1 to 7 |
|
||||
| Default Value | 1 |
|
||||
|
||||
|
||||
#### 1: Lifeline
|
||||
|
||||
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
1. Battery Report
|
||||
|
||||
2. Notification Report
|
||||
|
||||
3. Device Reset Locally
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_1 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 2: Basic Report
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_2 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 3: Notification Report
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_3 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 4: Basic Set
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_4 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/795).
|
|
@ -52,6 +52,7 @@ The following table summarises the channels available for the FGS223 Double Swit
|
|||
| Electric meter (watts) | meter_watts | meter_watts | Energy | Number |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
| Alarm | alarm_general | alarm_general | Door | Switch |
|
||||
| Send notification | notification_send | notification_send | | Number |
|
||||
| Switch 1 | switch_binary1 | switch_binary | Switch | Switch |
|
||||
| Electric meter (kWh) 1 | meter_kwh1 | meter_kwh | Energy | Number |
|
||||
| Electric meter (watts) 1 | meter_watts1 | meter_watts | Energy | Number |
|
||||
|
|
|
@ -0,0 +1,145 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: GE 28175 (ZW3106) - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# GE 28175 (ZW3106) Plug-In Dual Smart Dimmer
|
||||
|
||||
This describes the Z-Wave device *GE 28175 (ZW3106)*, manufactured by *Jasco Products* with the thing type UID of ```ge_zw3106_05_023```.
|
||||
|
||||
Plug-In Dual Smart Dimmer
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Quickly press and release the button on the top of the device to enter inclusion mode.
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the GE 28175 (ZW3106) Plug-In Dual Smart Dimmer.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Dimmer | switch_dimmer | switch_dimmer | DimmableLight | Dimmer |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
| Dimmer 1 | switch_dimmer1 | switch_dimmer | DimmableLight | Dimmer |
|
||||
| Dimmer 2 | switch_dimmer2 | switch_dimmer | DimmableLight | Dimmer |
|
||||
|
||||
|
||||
### Dimmer
|
||||
|
||||
#### Restore Last Value
|
||||
|
||||
Restore Last Dimming level on ON.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_restoreLastValue |
|
||||
| Data Type | BOOLEAN || Default Value | true |
|
||||
| Options | Restore Last Value (true) |
|
||||
| | Restore Full Brightness (false) |
|
||||
|
||||
|
||||
### Dimmer 1
|
||||
|
||||
#### Restore Last Value
|
||||
|
||||
Restore Last Dimming level on ON.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_restoreLastValue |
|
||||
| Data Type | BOOLEAN || Default Value | true |
|
||||
| Options | Restore Last Value (true) |
|
||||
| | Restore Full Brightness (false) |
|
||||
|
||||
|
||||
### Dimmer 2
|
||||
|
||||
#### Restore Last Value
|
||||
|
||||
Restore Last Dimming level on ON.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_restoreLastValue |
|
||||
| Data Type | BOOLEAN || Default Value | true |
|
||||
| Options | Restore Last Value (true) |
|
||||
| | Restore Full Brightness (false) |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the GE 28175 (ZW3106) Plug-In Dual Smart Dimmer.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 0: | |
|
||||
| 1: Group 1 | Lifeline, Switch Multilevel Report |
|
||||
| 2: Group 2 | Basic Set, controlled with the local load |
|
||||
| 3: Group 3 | Basic Set, controlled by double pressing the On or Off button |
|
||||
|
||||
|
||||
#### 0:
|
||||
|
||||
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Added this by mistake (was looking at docs for the wrong product), bu can't find a delete button.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_0_0 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 0 to 4294967295 |
|
||||
| Default Value | 0 |
|
||||
|
||||
|
||||
#### 1: Group 1
|
||||
|
||||
Lifeline, Switch Multilevel Report
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_1 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 2: Group 2
|
||||
|
||||
Basic Set, controlled with the local load
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_2 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 3: Group 3
|
||||
|
||||
Basic Set, controlled by double pressing the On or Off button
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_3 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/796).
|
|
@ -0,0 +1,48 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: Heiman CO Detector - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# Heiman CO Detector CO Detector
|
||||
|
||||
This describes the Z-Wave device *Heiman CO Detector*, manufactured by *Heiman Technology Co. Ltd* with the thing type UID of ```heiman_codetector_00_000```.
|
||||
|
||||
CO Detector
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Set the z-Wave controller to inclusion mode and then quickly triple press button behind small hole on the side of the CO-Sensor device to include. You can use a needle or an SIM card extractor to push the button behind the small hole on the side of the device.
|
||||
|
||||
|
||||
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
Set the z-Wave controller to exclusion mode and then quickly triple press button behind small hole on the side of the CO-Sensor device to exclude. You can use a needle or an SIM card extractor to push the button behind the small hole on the side of the device.
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the Heiman CO Detector CO Detector.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Binary Sensor | sensor_binary | sensor_binary | Door | Switch |
|
||||
| Alarm (CO) | alarm_co | alarm_co | Door | Switch |
|
||||
| | battery-level | system.battery-level | | |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the Heiman CO Detector CO Detector.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/790).
|
|
@ -9,7 +9,33 @@ title: HS1SA - ZWave
|
|||
|
||||
This describes the Z-Wave device *HS1SA*, manufactured by *Heiman Technology Co. Ltd* with the thing type UID of ```heiman_hs1sa_00_000```.
|
||||
|
||||
Smoke Detector
|
||||
Smoke Detector
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
The smart smoke sensor detects smoke, and sends an alarm signals to alert of danger. When the smart smoke sensor detects smoke, it will send an alarm notification to your controller through wireless Z-Wave communication protocol.
|
||||
|
||||
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Press the pin 3 times within 1.5s, Green LED is Blinking 3 times within 1 second. If Inclusion Process is successful, Green led will turn off.
|
||||
|
||||
|
||||
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
Press the pin 3 times within 1.5s. If Exclusion Process is successful, Green led is Blinking 6 times, then turn off.
|
||||
|
||||
|
||||
|
||||
|
||||
### Wakeup Information
|
||||
|
||||
Wake up Notification is transmitted every 24 hours by default. Wake up Notification is transmitted after Notification Report is Transmitted.
|
||||
|
||||
|
||||
## Channels
|
||||
|
|
|
@ -129,6 +129,38 @@ Detailed information on each parameter can be found below.
|
|||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 2: Temperature Scale | Temperature Scale |
|
||||
| 1: Lifeline | Z-Wave Plus Lifeline |
|
||||
|
||||
|
||||
#### 2: Temperature Scale
|
||||
|
||||
Temperature Scale
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
0 = Fahrenheit / 1 = Celsius
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_2_1 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 0 to 1 |
|
||||
| Default Value | 0 |
|
||||
|
||||
|
||||
#### 1: Lifeline
|
||||
|
||||
Z-Wave Plus Lifeline
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_1 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
|
|
@ -18,6 +18,7 @@ The following table summarises the channels available for the NGD00Z-4 Garage Do
|
|||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Barrier State | barrier_state | barrier_state | Door | Number |
|
||||
| Alarm (raw) | alarm_raw | alarm_raw | | String |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
|
|
|
@ -9,7 +9,46 @@ title: ZMNHAD - ZWave
|
|||
|
||||
This describes the Z-Wave device *ZMNHAD*, manufactured by *Goap* with the thing type UID of ```qubino_zmnhad_00_000```.
|
||||
|
||||
Flush 1 relay
|
||||
Flush 1 relay
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
This Z-Wave module is used for switching on or off the electrical device (e.g. light or fan). The module can be controlled either through Z-wave network or through the wall switch. The module is designed to be mounted inside a “flush mounting box”, hidden behind a traditional wall switch. Module measures power consumption of electrical device and supports connection of digital temperature sensor. It is designed to act as repeater in order to improve range and stability of Z-wave network. Supported switches Module supports mono-stable switches (push button) and bi-stable switches. The module is factory set to operate with bi-stable switches.
|
||||
|
||||
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
**Module Inclusion (Adding to Z-Wave network)**
|
||||
|
||||
* Connect module to power supply (with temperature sensor connected -if purchased)
|
||||
* Enable add/remove mode on main controller
|
||||
* Auto-inclusion (works forabout 5 seconds after connected to power supply) or
|
||||
* Press push button I1 three times within 3s (3 times change switch state within 3 seconds) or
|
||||
* Press service button **S** (only applicable for 24 V SELV supply voltage) for more than 2 seconds.
|
||||
|
||||
**NOTE1:** For auto-inclusion procedure, first set main controller into inclusion mode and then connect module to power supply.
|
||||
|
||||
**NOTE2:** When connecting temperature sensor to module that has already been included, you have to exclude module first. Switch off power supply , connect the sensor and re-include the module.
|
||||
|
||||
|
||||
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
**Module Exclusion/Reset (Removing from Z-Wavenetwork)**
|
||||
|
||||
* Connect module to power supply
|
||||
* Bring module within maximum 1 meter (3 feet) of the main controller,
|
||||
* Enable add/remove mode on main controller,
|
||||
* Press push button **I1 **five times within 3s (5 times change switch state within 3 seconds) in the first 60 seconds after the module is connected to the power supply or
|
||||
* Press service button **S **(only applicable for 24 V SELV supply voltage) for more than 6 seconds.
|
||||
|
||||
By this function all parameters of the module are set to default values and own ID is deleted.
|
||||
|
||||
If push button I1 is pressed three times within 3s (or service button S is pressed more than 2 and less than 6 seconds) module is excluded, but configuration parameters are not set to default values.
|
||||
|
||||
|
||||
## Channels
|
||||
|
@ -25,9 +64,26 @@ The following table summarises the channels available for the ZMNHAD Flush 1 rel
|
|||
| Switch 1 | switch_binary1 | switch_binary | Switch | Switch |
|
||||
| Electric meter (watts) 1 | meter_watts1 | meter_watts | Energy | Number |
|
||||
| Electric meter (kWh) 1 | meter_kwh1 | meter_kwh | Energy | Number |
|
||||
| Binary Sensor 2 | sensor_binary2 | sensor_binary | Door | Switch |
|
||||
| Binary Sensor I2 | sensor_binary2 | sensor_binary | Door | Switch |
|
||||
| Alarm (power) 2 | alarm_power2 | alarm_power | Door | Switch |
|
||||
| Binary Sensor I3 | sensor_binary3 | sensor_binary | Door | Switch |
|
||||
| Sensor (temperature) | sensor_temperature3 | sensor_temperature | Temperature | Number |
|
||||
| Sensor (temperature) | sensor_temperature4 | sensor_temperature | Temperature | Number |
|
||||
|
||||
|
||||
### Sensor (temperature)
|
||||
|
||||
#### Scale
|
||||
|
||||
Select the scale for temperature readings
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_scale |
|
||||
| Data Type | TEXT || Default Value | 0 |
|
||||
| Options | Celsius (0) |
|
||||
| | Fahrenheit (1) |
|
||||
|
||||
|
||||
### Sensor (temperature)
|
||||
|
@ -66,7 +122,7 @@ Detailed information on each parameter can be found below.
|
|||
| 101: Enable / Disable Endpoints I3 or select Notification Type and Event | Enabling I3 means that Endpoint (I3) will be present on UI. Disabling it will result in hi... |
|
||||
| 110: Temperature sensor offset settings | Set value is added or subtracted to actual measured value by sensor. 32536 – offset is 0.0... |
|
||||
| 120: Digital temperature sensor reporting | If digital temperature sensor is connected, module reports measured temperature on tempera... |
|
||||
| 1: Lifeline to Controller (reserved for communication with the main contr | |
|
||||
| 1: Lifeline | Lifeline group (reserved for communication with the main controller |
|
||||
| 2: Basic on/off (triggered at change of the input Q state and reflectin | |
|
||||
| 3: Basic on/off (triggered at change of the input I2 state and reflecti | |
|
||||
| 4: Notification report (triggered at change of the input I2 state and r | |
|
||||
|
@ -286,7 +342,9 @@ If digital temperature sensor is connected, module reports measured temperature
|
|||
| Default Value | 5 |
|
||||
|
||||
|
||||
#### 1: Lifeline to Controller (reserved for communication with the main contr
|
||||
#### 1: Lifeline
|
||||
|
||||
Lifeline group (reserved for communication with the main controller
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|
|
|
@ -66,6 +66,22 @@ The following table summarises the channels available for the ZMNHBD Flush 2 rel
|
|||
| Switch 2 | switch_binary2 | switch_binary | Switch | Switch |
|
||||
| Electric meter (watts) 2 | meter_watts2 | meter_watts | Energy | Number |
|
||||
| Electric meter (kWh) 2 | meter_kwh2 | meter_kwh | Energy | Number |
|
||||
| Sensor (temperature) | sensor_temperature3 | sensor_temperature | Temperature | Number |
|
||||
|
||||
|
||||
### Sensor (temperature)
|
||||
|
||||
#### Scale
|
||||
|
||||
Select the scale for temperature readings
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_scale |
|
||||
| Data Type | TEXT || Default Value | 0 |
|
||||
| Options | Celsius (0) |
|
||||
| | Fahrenheit (1) |
|
||||
|
||||
|
||||
### Sensor (temperature)
|
||||
|
|
|
@ -67,7 +67,7 @@ Detailed information on each parameter can be found below.
|
|||
| 141: Input I1 0-10V reporting threshold | |
|
||||
| 143: Minimum sensor range value | |
|
||||
| 144: Maximum sensor range value | |
|
||||
| 1: Lifeline Group | reserved for communication with the main controller |
|
||||
| 1: Lifeline | Reserved for communication with the main controller |
|
||||
| 2: basic on/off | triggered at change of the input I1 state and reflecting its state |
|
||||
| 3: start level change/stop level change | triggered at change of the input I1 state and reflecting its state) up to 16 nodes. Workin... |
|
||||
| 4: multilevel set | triggered at changes of state/value of the Flush Dimmer 0-10V |
|
||||
|
@ -347,9 +347,9 @@ Available config. parameters (data type is2 Byte DEC):
|
|||
| Default Value | 1000 |
|
||||
|
||||
|
||||
#### 1: Lifeline Group
|
||||
#### 1: Lifeline
|
||||
|
||||
reserved for communication with the main controller
|
||||
Reserved for communication with the main controller
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|
|
|
@ -0,0 +1,224 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: ZV9001T4-DIM - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# ZV9001T4-DIM 4 group single colour touch panel secondary controller
|
||||
|
||||
This describes the Z-Wave device *ZV9001T4-DIM*, manufactured by *Sunricher* with the thing type UID of ```sunricher_zv9001t4dim_00_000```.
|
||||
|
||||
4 group single colour touch panel secondary controller
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
SR-ZV9001T4-DIM-EU is a touch control z-wave secondary controller (z wave dimmer switch) with z-wave Plus enabled for single color LED lighting. As a z-wave secondary controller, it is a z wave dimmer switch which can be added to z-wave network and removed from z-wave network by z-wave primary (master) controllers or gateway and control z-wave devices that are added to the network. It supports 5 groups for associations, a lifeline group association to primary (master) controller and 4 groups association to devices, the group association to devices supports maximum 12 Z-wave devices per group. It is a universal z-wave slave which can be compatible with universal z-wave primary controller or gateway. The wireless controller is compatible with single color z wave device SR-ZV9101FA-DIM and different frequencies are available for different countries or areas. The signal transmit distance can be up to 30m. The controller supports group and scene storage and recall functions. It is easy to install on the wall and available in standard EU size.
|
||||
|
||||
**Key Features**
|
||||
|
||||
* Single color touch Z-wave secondary controller
|
||||
* Source-routed Mesh Network Architecture
|
||||
* Each device works as a node
|
||||
* All Nodes Are Transceivers
|
||||
* Each Z-wave Network Allows Up to 243 Devices
|
||||
* Actively route around and circumvent obstacles or radio dead spots
|
||||
* Wireless Synchronization to Drastically Increase Control Distance
|
||||
* Devices can communicate to one another by using intermediate nodes
|
||||
* Added or removed by primary controllers or gateway
|
||||
* Supports 1 lifeline group association to master controller
|
||||
* Supports 4 groups association to z-wave devices, maximum 12 devices per group
|
||||
* Compatible with universal z-wave primary controller or gateway
|
||||
* Supports group, scene storage and recall functions
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the ZV9001T4-DIM 4 group single colour touch panel secondary controller.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the ZV9001T4-DIM 4 group single colour touch panel secondary controller.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 3: Scene_type | Scene type |
|
||||
| 4: Scene_send_to_where | Scene send to where |
|
||||
| 1: Lifeline | |
|
||||
| 2: Group 2 | Launch 1 |
|
||||
| 3: Group 3 | Launch 2 |
|
||||
| 4: Group 4 | Launch 3 |
|
||||
| 5: Group 5 | Launch 4 |
|
||||
|
||||
|
||||
#### 3: Scene_type
|
||||
|
||||
Scene type
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Parameter 3 can be configured via “COMMAND\_CLASS\_CONFIGURATION” to decide which scene command to use “CENTRAL SCENE” or “SCENE ACTIVATION”, factory default is “CENTRAL SCENE”.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_3_1 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 0 to 1 |
|
||||
| Default Value | 0 |
|
||||
|
||||
|
||||
#### 4: Scene_send_to_where
|
||||
|
||||
Scene send to where
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Parameter 4 can be configured via “COMMAND\_CLASS\_CONFIGURATION” to decide which object shall the remote send scene packet to, the gateway or the association group. Factory default is the association group. By factory default this remote uses “CENTRAL SCENE” to send packet to the association group devices, this method requires that the controlled devices support “CENTRAL SCENE”
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_4_1 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 0 to 1 |
|
||||
| Default Value | 1 |
|
||||
|
||||
|
||||
#### 1: Lifeline
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_1 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 2: Group 2
|
||||
|
||||
Launch 1
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Send mode:
|
||||
|
||||
Singlecast/Multicast (The touch color wheel uses multicast to send packets)
|
||||
|
||||
Send commands:
|
||||
|
||||
The Basic Set,
|
||||
Switch Multilevel Start Level Change,
|
||||
Switch Multilevel Stop Level Change,
|
||||
Switch Multilevel Set,
|
||||
Scene Activation,
|
||||
Scene Actuator Conf Set,
|
||||
Central Scene Notification
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_2 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 3: Group 3
|
||||
|
||||
Launch 2
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Send mode:
|
||||
|
||||
Singlecast/Multicast (The touch color wheel uses multicast to send packets)
|
||||
|
||||
Send commands:
|
||||
|
||||
The Basic Set,
|
||||
Switch Multilevel Start Level Change,
|
||||
Switch Multilevel Stop Level Change,
|
||||
Switch Multilevel Set,
|
||||
Scene Activation,
|
||||
Scene Actuator Conf Set,
|
||||
Central Scene Notification
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_3 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 4: Group 4
|
||||
|
||||
Launch 3
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Send mode:
|
||||
|
||||
Singlecast/Multicast (The touch color wheel uses multicast to send packets)
|
||||
|
||||
Send commands:
|
||||
|
||||
The Basic Set,
|
||||
Switch Multilevel Start Level Change,
|
||||
Switch Multilevel Stop Level Change,
|
||||
Switch Multilevel Set,
|
||||
Scene Activation,
|
||||
Scene Actuator Conf Set,
|
||||
Central Scene Notification
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_4 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
#### 5: Group 5
|
||||
|
||||
Launch 4
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Send mode:
|
||||
|
||||
Singlecast/Multicast (The touch color wheel uses multicast to send packets)
|
||||
|
||||
Send commands:
|
||||
|
||||
The Basic Set,
|
||||
Switch Multilevel Start Level Change,
|
||||
Switch Multilevel Stop Level Change,
|
||||
Switch Multilevel Set,
|
||||
Scene Activation,
|
||||
Scene Actuator Conf Set,
|
||||
Central Scene Notification
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_5 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/792).
|
|
@ -0,0 +1,76 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: ZV9102FA-CCT - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# ZV9102FA-CCT Z-wave CCT LED controller
|
||||
|
||||
This describes the Z-Wave device *ZV9102FA-CCT*, manufactured by *Sunricher* with the thing type UID of ```sunricher_zv9102facct_00_000```.
|
||||
|
||||
Z-wave CCT LED controller
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
The SR-ZV9102FA-CCT is a dual color zwave lighting device and z wave slave that adopts z-wave RF Plus and z-wave mesh network technology with 4 channel, 5A per channel output for dual color LED lights. As a z-wave slave, the device can be added to z-wave network or removed from z-wave network by z-wave primary (master) controllers or gateway. The z wave devices are transceivers that enable to receive and transmit RF signal from the z wave remote while both of them are added to the network. The transceiver is a universal z wave slave which is compatible with universal z wave primary (master) controllers/gateway.
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the ZV9102FA-CCT Z-wave CCT LED controller.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Dimmer | switch_dimmer | switch_dimmer | DimmableLight | Dimmer |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
| Color Control | color_color | color_color | | Color |
|
||||
| Color Temperature | color_temperature | color_temperature | ColorLight | Dimmer |
|
||||
| Alarm (system) | alarm_system | alarm_system | | Switch |
|
||||
|
||||
|
||||
### Dimmer
|
||||
|
||||
#### Restore Last Value
|
||||
|
||||
Restore Last Dimming level on ON.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_restoreLastValue |
|
||||
| Data Type | BOOLEAN || Default Value | true |
|
||||
| Options | Restore Last Value (true) |
|
||||
| | Restore Full Brightness (false) |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the ZV9102FA-CCT Z-wave CCT LED controller.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 1: Lifeline | |
|
||||
|
||||
|
||||
#### 1: Lifeline
|
||||
|
||||
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Single Cast DEVICE\_RESET\_LOCALLY\_NOTIFICATION (sent when factory reset the device)
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_1 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/793).
|
|
@ -7,7 +7,7 @@ title: Things Summary - ZWave
|
|||
|
||||
# Things Supported by the Z-Wave Binding
|
||||
|
||||
The binding supports a total of 688 things from a large number
|
||||
The binding supports a total of 696 things from a large number
|
||||
of manufacturers. The list below summarises the things currently supported,
|
||||
and links to more detailed information about each thing.
|
||||
|
||||
|
@ -55,13 +55,13 @@ and links to more detailed information about each thing.
|
|||
| Goap | ZMNHCD Flush Shutter | 4.1All above 4.1 | [qubino_zmnhcd_04_001](qubino_zmnhcd_04_001.md) | Blinds |
|
||||
| Z-Wave.Me | KFOB 4 button keyfob | All | [zwaveme_kfob_00_000](zwaveme_kfob_00_000.md) | |
|
||||
| Remotec | ZTS-110 ZTS-110 Z Wave Thermostat | All | [remotec_zts110_00_000](remotec_zts110_00_000.md) | |
|
||||
| Philio Technology Corp | PAN06 In Wall Dual Relay(1 Way) Switch Module 2x 1.5kW | All | [philio_pan06_00_000](philio_pan06_00_000.md) | |
|
||||
| Philio Technology Corp | PAN06 In Wall Dual Relay(1 Way) Switch Module 2x 1.5kW | All | [philio_pan06_00_000](philio_pan06_00_000.md) | WallSwitch |
|
||||
| Everspring | AD146 In-Wall Dimmer Module | All | [everspring_ad146_00_000](everspring_ad146_00_000.md) | |
|
||||
| Horstmann Controls Limited | SES 303 Temperature and humidity sensor | All | [horstmann_ses303_00_000](horstmann_ses303_00_000.md) | Sensor |
|
||||
| McoHome Technology Co., Ltd | TPS411 Touch Panel Switch 1 Button | All | [mcohome_tps411_00_000](mcohome_tps411_00_000.md) | |
|
||||
| Willis Electric Co., Ltd. | ZEN22 Zooz Z-Wave Dimmable Light Switch ZEN22 | All | [willis_zen22_00_000](willis_zen22_00_000.md) | |
|
||||
| Popp & Co | 123580 Wall Plug Dimmer | All | [popp_123580_00_000](popp_123580_00_000.md) | |
|
||||
| Goap | ZMNHVD Flush Dimmer 0-10V | All | [qubino_zmnhvd_00_000](qubino_zmnhvd_00_000.md) | |
|
||||
| Goap | ZMNHVD Flush Dimmer 0-10V | All | [qubino_zmnhvd_00_000](qubino_zmnhvd_00_000.md) | WallSwitch |
|
||||
| Goap | ZMNHWD Qubino Flush RGBW Dimmer | All | [qubino_zmnhwd_00_000](qubino_zmnhwd_00_000.md) | |
|
||||
| Reitz-Group.de | 064394 Schuko Plug Dimmer | All | [reitz_064394_00_000](reitz_064394_00_000.md) | |
|
||||
| Shenzhen Neo Electronics Co., Ltd | Motion Sensor IN Motion Sensor IN | All | [shenzhen_motionsensorin_00_000](shenzhen_motionsensorin_00_000.md) | |
|
||||
|
@ -79,7 +79,7 @@ and links to more detailed information about each thing.
|
|||
| Fakro | VMZ Solar z-wave plus Awning Blind z-wave plus version | All | [fakro_vmzsolarplus_00_000](fakro_vmzsolarplus_00_000.md) | |
|
||||
| Danfoss | DTHERMZ6 Living Connect Z Thermostat | All | [danfoss_dthermz6_00_000](danfoss_dthermz6_00_000.md) | |
|
||||
| Radio Thermostat Company of America (RTC) | CT32 Z-Wave Thermostat | All | [rtc_ct32_00_000](rtc_ct32_00_000.md) | |
|
||||
| Heiman Technology Co. Ltd | HS1SA Smoke Detector | All | [heiman_hs1sa_00_000](heiman_hs1sa_00_000.md) | |
|
||||
| Heiman Technology Co. Ltd | HS1SA Smoke Detector | All | [heiman_hs1sa_00_000](heiman_hs1sa_00_000.md) | SmokeDetector |
|
||||
| Philio Technology Corp | PAT02-A Flood Multisensor (incl. humidty and temperature) | All | [philio_pat02a_00_000](philio_pat02a_00_000.md) | |
|
||||
| Hank | DWS01 Door and Window Sensor | All | [hank_dws01_00_000](hank_dws01_00_000.md) | |
|
||||
| Danfoss | 014G0160 Z-Wave room sensor | All | [danfoss_014g0160_00_000](danfoss_014g0160_00_000.md) | |
|
||||
|
@ -148,7 +148,7 @@ and links to more detailed information about each thing.
|
|||
| Shenzhen Neo Electronics Co., Ltd | EU-1 Light Switch 1 Channel | All | [shenzhen_eu1_00_000](shenzhen_eu1_00_000.md) | |
|
||||
| Qees | Qees Wall Wall mountable mini 4 button remote | All | [qees_qeeswall_00_000](qees_qeeswall_00_000.md) | |
|
||||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZW15R Duplex receptacle | All | [enerwave_zw15r_00_000](enerwave_zw15r_00_000.md) | |
|
||||
| Goap | ZMNHBD Flush 2 relays | All | [qubino_zmnhbd_00_000](qubino_zmnhbd_00_000.md) | |
|
||||
| Goap | ZMNHBD Flush 2 relays | All | [qubino_zmnhbd_00_000](qubino_zmnhbd_00_000.md) | WallSwitch |
|
||||
| Jasco Products | 45604 Outdoor Lighting Control Module | All | [ge_45604_00_000](ge_45604_00_000.md) | |
|
||||
| Goap | ZMNHCD Flush Shutter | All up to 4.0 | [qubino_zmnhcd_00_000](qubino_zmnhcd_00_000.md) | |
|
||||
| Cooper Wiring Devices | RF9534WS Smart Dimmer | All | [cooper_rf9534ws_00_000](cooper_rf9534ws_00_000.md) | |
|
||||
|
@ -156,7 +156,7 @@ and links to more detailed information about each thing.
|
|||
| Jasco Products | 32563 Smart Door Sensor | All | [ge_smartdoorsensor_00_000](ge_smartdoorsensor_00_000.md) | |
|
||||
| Erone | HM-DW001 Door/Window Contact | All | [erone_hmdw001_00_000](erone_hmdw001_00_000.md) | |
|
||||
| Somfy | ZRTSI Z-Wave to RTS Interface Controller | All | [somfy_zrtsi_00_000](somfy_zrtsi_00_000.md) | Blinds |
|
||||
| Cooper Wiring Devices | RF9500 Battery Switch | All | [cooper_rf9500_00_000](cooper_rf9500_00_000.md) | |
|
||||
| Cooper Wiring Devices | RF9500 Battery Switch | All | [cooper_rf9500_00_000](cooper_rf9500_00_000.md) | WallSwitch |
|
||||
| Vision Security | ZS6301 CO Detector | All | [vision_zs6301_00_000](vision_zs6301_00_000.md) | |
|
||||
| Jasco Products | 28177 GE Z-Wave Plus Wireless Smart Lighting Control Appliance Module | All | [ge_28177_00_000](ge_28177_00_000.md) | |
|
||||
| AEON Labs | DSC06 Smart Energy Switch | All | [aeon_dsc06_00_000](aeon_dsc06_00_000.md) | |
|
||||
|
@ -186,6 +186,7 @@ and links to more detailed information about each thing.
|
|||
| Horstmann Controls Limited | SIR-321 RF Countdown Timer | All | [horstmann_sir321_00_000](horstmann_sir321_00_000.md) | |
|
||||
| Intermatic | CA3750 Contactor/Switch | All | [intermatic_ca3750_00_000](intermatic_ca3750_00_000.md) | |
|
||||
| Popp & Co | 005206 Z-Weather | All | [popp_005206_00_000](popp_005206_00_000.md) | |
|
||||
| Sunricher | ZV9102FA-CCT Z-wave CCT LED controller | All | [sunricher_zv9102facct_00_000](sunricher_zv9102facct_00_000.md) | LightBulb |
|
||||
| Philio Technology Corp | PAN16 Smart Energy Plug In Switch | 1.2All above 1.2 | [philio_pan16_01_002](philio_pan16_01_002.md) | |
|
||||
| Devolo | PST02-1B Multisensor | All | [devolo_pst021b_00_000](devolo_pst021b_00_000.md) | |
|
||||
| McoHome Technology Co., Ltd | TPS412 Touch Panel Switch 2 Channel | All | [mcohome_tps412_00_000](mcohome_tps412_00_000.md) | |
|
||||
|
@ -202,13 +203,13 @@ and links to more detailed information about each thing.
|
|||
| Reitz-Group.de | Duewi ZW-ZS-3500 Schuko Plug Switch | All | [reitz_duw064374_00_000](reitz_duw064374_00_000.md) | |
|
||||
| HomeSeer Technologies | HS-WD100+ Scene Capable Wall Dimmer Switch | All | [homeseer_hswd100_00_000](homeseer_hswd100_00_000.md) | |
|
||||
| Vision Security | ZD2201 Multisensor 4in1 | All | [vision_zd2201_00_000](vision_zd2201_00_000.md) | Sensor |
|
||||
| Zipato | ZD2102 Door window sensor | All | [zipato_zd2102_00_000](zipato_zd2102_00_000.md) | |
|
||||
| Zipato | ZD2102 Door window sensor | All | [zipato_zd2102_00_000](zipato_zd2102_00_000.md) | Door |
|
||||
| Popp & Co | 009303 Wall Controller | All | [popp_009303_00_000](popp_009303_00_000.md) | WallSwitch |
|
||||
| Leviton | DZR15 Scene Capable Receptacle | All | [leviton_dzr15_00_000](leviton_dzr15_00_000.md) | WallSwitch |
|
||||
| Reitz-Group.de | DUW_RPT Düwi Repeater | All | [reitz_duwrpt_00_000](reitz_duwrpt_00_000.md) | |
|
||||
| Reitz-Group.de | swiidplug SwiidPlug | All | [reitz_swiidplug_00_000](reitz_swiidplug_00_000.md) | |
|
||||
| INNOVUS | SmartDimmer RAone SmartDimmer | 1.0All above 1.0 | [innovus_00110001_01_000](innovus_00110001_01_000.md) | |
|
||||
| Allegion | BE469 Touchscreen Deadbolt | All | [schlage_be469_00_000](schlage_be469_00_000.md) | |
|
||||
| Allegion | BE469 Touchscreen Deadbolt | All | [schlage_be469_00_000](schlage_be469_00_000.md) | Lock |
|
||||
| Inovelli | ZW37 Show Home, 2 channel smart plug, ZWave Plus | All | [inovelli_zw37_00_000](inovelli_zw37_00_000.md) | |
|
||||
| GreenWave Reality Inc. | GWPN1 Single-socket PowerNode | 3.0All above 3.0 | [greenwave_gwpn1_03_000](greenwave_gwpn1_03_000.md) | |
|
||||
| D-Link | DCH-Z310 Smoke Detector | All | [dlink_dchz310_00_000](dlink_dchz310_00_000.md) | SmokeDetector |
|
||||
|
@ -237,6 +238,7 @@ and links to more detailed information about each thing.
|
|||
| McoHome Technology Co., Ltd | MH-S511-IL MCOHome touch switch Relay | All | [mcohome_mhs511il_00_000](mcohome_mhs511il_00_000.md) | |
|
||||
| BeNext | P1-dongle P1-dongle | All | [benext_p1dongle_00_000](benext_p1dongle_00_000.md) | |
|
||||
| Jasco Products | GE 12725 In-Wall Dimmer | All | [ge_ge12725_00_000](ge_ge12725_00_000.md) | |
|
||||
| Zooz | ZEN24 Z-Wave Plus Toggle Dimmer Light Switch Ver 2.0 | All | [zooz_zen24_00_000](zooz_zen24_00_000.md) | WallSwitch |
|
||||
| TKB Home | TZ06 In Wall Dual Relay(1 Way) Switch Module 2x 1.5kW | All | [tkb_tz06_00_000](tkb_tz06_00_000.md) | |
|
||||
| Jasco Products | GE 28169 Plug in Smart Switch | All | [ge_ge28169_00_000](ge_ge28169_00_000.md) | |
|
||||
| Popp & Co | POPE700052 Water Leakage Sensor | All | [popp_pope700052_00_000](popp_pope700052_00_000.md) | |
|
||||
|
@ -247,7 +249,7 @@ and links to more detailed information about each thing.
|
|||
| AEON Labs | ZW056 Doorbell | All | [aeon_zw056_00_000](aeon_zw056_00_000.md) | |
|
||||
| Reitz-Group.de | ZW ESJ 300 Duwi ZW ESJ 300 Blind Control | All | [reitz_zwesj300_00_000](reitz_zwesj300_00_000.md) | |
|
||||
| BeNext | Heating Control Thermostat for controlling the opentherm protocol | All | [benext_heatingcontrol_00_000](benext_heatingcontrol_00_000.md) | |
|
||||
| Honeywell | TH6320ZW T6 Pro Z-Wave Programmable Thermostat | All | [honeywell_th6320zw_00_000](honeywell_th6320zw_00_000.md) | |
|
||||
| Honeywell | TH6320ZW T6 Pro Z-Wave Programmable Thermostat | All | [honeywell_th6320zw_00_000](honeywell_th6320zw_00_000.md) | HVAC |
|
||||
| Jasco Products | 12729 In-Wall Smart Dimmer | All | [ge_12729_00_000](ge_12729_00_000.md) | |
|
||||
| Intermatic | HA03 Lamp Module | All | [intermatic_ha03_00_000](intermatic_ha03_00_000.md) | |
|
||||
| Intermatic | CA600 Dimmer Switch | All | [intermatic_ca600_00_000](intermatic_ca600_00_000.md) | |
|
||||
|
@ -311,7 +313,7 @@ and links to more detailed information about each thing.
|
|||
| Vision Security | ZW4101 Drapery controller (up/stop/down) | All | [vision_zw4101_00_000](vision_zw4101_00_000.md) | |
|
||||
| Universal Electronics Inc. | 45601 Advanced Remote Wireless Lighting Control | All | [uei_45601_00_000](uei_45601_00_000.md) | |
|
||||
| Remotec | ZFM-80 Fixture Switch Module | All | [remotec_zfm80_00_000](remotec_zfm80_00_000.md) | |
|
||||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZWN-BPC PIR Sensor | All | [enerwave_zwnbpc_00_000](enerwave_zwnbpc_00_000.md) | |
|
||||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZWN-BPC PIR Sensor | All | [enerwave_zwnbpc_00_000](enerwave_zwnbpc_00_000.md) | MotionDetector |
|
||||
| Everspring | AN179 In-Wall Switch Module | All | [everspring_an179_00_000](everspring_an179_00_000.md) | |
|
||||
| AEON Labs | DSB29 Door/Window sensor Gen2 | All | [aeon_dsb29_00_000](aeon_dsb29_00_000.md) | |
|
||||
| Wintop | iPlugDim Wall Plug with dimming function | All | [wintop_iplugdim_00_000](wintop_iplugdim_00_000.md) | |
|
||||
|
@ -349,6 +351,7 @@ and links to more detailed information about each thing.
|
|||
| Horstmann Controls Limited | SRT323 Secure Z-Wave Room Thermostat | All | [horstmann_srt323_00_000](horstmann_srt323_00_000.md) | |
|
||||
| Jasco Products | GE 14295 In-Wall Dimmer Switch | All | [ge_ge14295_00_000](ge_ge14295_00_000.md) | |
|
||||
| INNOVUS | SmoothRemote SmoothRemote | All | [innovus_smoothremote_00_000](innovus_smoothremote_00_000.md) | |
|
||||
| Sunricher | ZV9001T4-DIM 4 group single colour touch panel secondary controller | All | [sunricher_zv9001t4dim_00_000](sunricher_zv9001t4dim_00_000.md) | WallSwitch |
|
||||
| BeNext | powerSwitch Power Switch EU | All | [benext_powerswitch_00_000](benext_powerswitch_00_000.md) | |
|
||||
| Leviton | VRI06 Incandescent Scene Capable Dimmer | All | [leviton_vri06_00_000](leviton_vri06_00_000.md) | |
|
||||
| AEON Labs | DSD31 Outlet Plugable Siren | All | [aeon_dsd31_00_000](aeon_dsd31_00_000.md) | Siren |
|
||||
|
@ -368,6 +371,7 @@ and links to more detailed information about each thing.
|
|||
| Zooz | ZEN06 Smart Plug with 2 USB ports | All | [zooz_zen06_00_000](zooz_zen06_00_000.md) | |
|
||||
| Jasco Products | ZW4002 In-Wall Smart Fan Control | All | [ge_zw4002_00_000](ge_zw4002_00_000.md) | |
|
||||
| AEON Labs | DSC19 Micro Smart Energy Illuminator G2 | All | [aeon_dsc19_00_000](aeon_dsc19_00_000.md) | |
|
||||
| Heiman Technology Co. Ltd | Heiman CO Detector CO Detector | All | [heiman_codetector_00_000](heiman_codetector_00_000.md) | Sensor |
|
||||
| Wintop | ITEMP Contact and temperature sensor | All | [wintop_itemp_00_000](wintop_itemp_00_000.md) | Sensor |
|
||||
| Fibargroup | FGFS101 Flood Sensor | 3.2 to 23.0 | [fibaro_fgfs101_03_002](fibaro_fgfs101_03_002.md) | |
|
||||
| Ecolink | Ecolink PIR v2.5 Z-Wave PIR Motion Sensor v2.5 | All | [eco_ecolinkpirv25_00_000](eco_ecolinkpirv25_00_000.md) | |
|
||||
|
@ -384,7 +388,7 @@ and links to more detailed information about each thing.
|
|||
| Everspring | SE812 Siren | All | [everspring_se812_00_000](everspring_se812_00_000.md) | |
|
||||
| Cooper Wiring Devices | RF9542 Dimmer Accessory Switch | All | [cooper_rf9542_00_000](cooper_rf9542_00_000.md) | WallSwitch |
|
||||
| ID-RF | CWS-3101 Wall Switch | All | [nodon_cws3101_00_000](nodon_cws3101_00_000.md) | WallSwitch |
|
||||
| Goap | ZMNHAD Flush 1 relay | All | [qubino_zmnhad_00_000](qubino_zmnhad_00_000.md) | |
|
||||
| Goap | ZMNHAD Flush 1 relay | All | [qubino_zmnhad_00_000](qubino_zmnhad_00_000.md) | WallSwitch |
|
||||
| Philio Technology Corp | PST02A Slim Multi-Sensor (PIR/Door/Temperature/Illumination) | All | [philio_pst02a_00_000](philio_pst02a_00_000.md) | |
|
||||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZWN-RSM2 Smart Dual Relay Switch Module | All | [enerwave_zwnrsm2_00_000](enerwave_zwnrsm2_00_000.md) | WallSwitch |
|
||||
| AEON Labs | ZW074 4 in One MultiSensor (G5) | All | [aeon_zw074_00_000](aeon_zw074_00_000.md) | |
|
||||
|
@ -446,8 +450,9 @@ and links to more detailed information about each thing.
|
|||
| AEON Labs | DSA03202 Minimote 4 button remote control | All | [aeon_dsa03202_00_000](aeon_dsa03202_00_000.md) | |
|
||||
| Jasco Products | Jasco 14318 Jasco 3-way Light Switch | All | [ge_14318_00_000](ge_14318_00_000.md) | |
|
||||
| Telldus Technologies AB | TZDW-100 Door/window sensor | All | [telldus_tzdw100_00_000](telldus_tzdw100_00_000.md) | |
|
||||
| Jasco Products | GE 28175 (ZW3106) Plug-In Dual Smart Dimmer | 5.23 to 5.23 | [ge_zw3106_05_023](ge_zw3106_05_023.md) | PowerOutlet |
|
||||
| Eurotronics | CometZ Thermostatic Valve | All | [eurotronic_cometz_00_000](eurotronic_cometz_00_000.md) | RadiatorControl |
|
||||
| AEON Labs | ZW098 LED Bulb | All | [aeon_zw098_00_000](aeon_zw098_00_000.md) | |
|
||||
| AEON Labs | ZW098 LED Bulb | All | [aeon_zw098_00_000](aeon_zw098_00_000.md) | LightBulb |
|
||||
| Willis Electric Co., Ltd. | NZW36 show home, Inovelli 1 channel smart plug, ZWave Plus | 1.0All above 1.0 | [willis_nzw36_01_000](willis_nzw36_01_000.md) | |
|
||||
| Goap | ZMNHUD Flush pilot (DIN version) | All | [qubino_zmnhud_00_000](qubino_zmnhud_00_000.md) | |
|
||||
| Goap | ZMNHTD Smart Meter | All | [qubino_zmnhtd_00_000](qubino_zmnhtd_00_000.md) | |
|
||||
|
@ -484,7 +489,7 @@ and links to more detailed information about each thing.
|
|||
| Jin Tao Bao | Curtain Motor Curtain motor | All | [jintaobao_curtainmotor_00_000](jintaobao_curtainmotor_00_000.md) | Blinds |
|
||||
| Locstar Technology Co., Ltd | LS-8015-ZW KAS-600 Z-Wave Electronic Lock | All | [locstar_ls8015zw_00_000](locstar_ls8015zw_00_000.md) | |
|
||||
| Remotec | ZRC-100 Remote Control | All | [remotec_zrc100_00_000](remotec_zrc100_00_000.md) | |
|
||||
| AEON Labs | ZW122 Water Sensor 6 | All | [aeon_zw122_00_000](aeon_zw122_00_000.md) | |
|
||||
| AEON Labs | ZW122 Water Sensor 6 | All | [aeon_zw122_00_000](aeon_zw122_00_000.md) | Sensor |
|
||||
| Devolo | MT02755 Humidity Sensor | All | [devolo_mt2755_00_000](devolo_mt2755_00_000.md) | |
|
||||
| Vision Security | ZS6101 Smoke Detector | All | [vision_zs6101_00_000](vision_zs6101_00_000.md) | |
|
||||
| AEON Labs | ZW132 Dual Nano Switch with Energy Metering | All | [aeon_zw132_00_000](aeon_zw132_00_000.md) | WallSwitch |
|
||||
|
@ -507,7 +512,7 @@ and links to more detailed information about each thing.
|
|||
| Leviton | VRS05 Scene Capable Switch | All | [leviton_vrs05_00_000](leviton_vrs05_00_000.md) | |
|
||||
| Leviton | VRS15 Scene Capable Push On/Off | All | [leviton_vrs15_00_000](leviton_vrs15_00_000.md) | |
|
||||
| EcoNet Controls | EV100 Z-Vent ZWave Controlled HVAC Air Register | All | [econet_ev100_00_000](econet_ev100_00_000.md) | |
|
||||
| Jasco Products | ZW3102 Jasco Energy Monitoring Lamp Dimmer | All | [ge_zw3102_00_000](ge_zw3102_00_000.md) | |
|
||||
| Jasco Products | ZW3102 Jasco Energy Monitoring Lamp Dimmer | All | [ge_zw3102_00_000](ge_zw3102_00_000.md) | PowerOutlet |
|
||||
| Steinel | L 810 LED iHF Sensor-switched outdoor up and downlighting | All | [steinel_l810ledihf_00_000](steinel_l810ledihf_00_000.md) | |
|
||||
| Philio Technology Corp | PAD02 Dimmer Socket | All | [philio_pad02_00_000](philio_pad02_00_000.md) | |
|
||||
| EcoNet Controls | GR-105N Z-Wave Motor for water/gas ball valves | All | [econet_gr105n_00_000](econet_gr105n_00_000.md) | |
|
||||
|
@ -525,6 +530,7 @@ and links to more detailed information about each thing.
|
|||
| ConnectHome | CH-201 CH-201 Thermostat | All | [connecthome_ch201_00_000](connecthome_ch201_00_000.md) | |
|
||||
| Wintop | Digital Home Systems In Wall Switch | All | [wintop_digitalhomesystems_00_000](wintop_digitalhomesystems_00_000.md) | |
|
||||
| McoHome Technology Co., Ltd | MH3700-HP Programmable Thermostat | All | [mcohome__00_000](mcohome__00_000.md) | |
|
||||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZWN-BPC PIR Sensor | 5.10All above 5.10 | [enerwave_zwnbpc_05_010](enerwave_zwnbpc_05_010.md) | MotionDetector |
|
||||
| Sigma Designs (Former Zensys) | K8 Z-Wave Battery Wall Controller | All | [sigma_zwck8_00_000](sigma_zwck8_00_000.md) | |
|
||||
| AEON Labs | ZW075 Smart Energy Switch 3rd Edition | All | [aeon_zw075_00_000](aeon_zw075_00_000.md) | PowerOutlet |
|
||||
| Fibargroup | FGD212 Dimmer 2 | 3.5All above 3.5 | [fibaro_fgd212_03_005](fibaro_fgd212_03_005.md) | WallSwitch |
|
||||
|
@ -580,7 +586,7 @@ and links to more detailed information about each thing.
|
|||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZW500DM In-wall Smart Meter Dimmer Switch | All | [enerwave_zw500dm_00_000](enerwave_zw500dm_00_000.md) | WallSwitch |
|
||||
| VDA | Vitrum I EU Boiler Vitrum touch timer switch Dual Relay | All | [vda_vitrumieuboiler_00_000](vda_vitrumieuboiler_00_000.md) | |
|
||||
| Linear Corp | LB60Z-1 Dimmable LED Light Bulb | All | [linear_lb60z1_00_000](linear_lb60z1_00_000.md) | LightBulb |
|
||||
| ASSA ABLOY | YRD210 Push Button Deadbolt | All | [yale_yrd210_00_000](yale_yrd210_00_000.md) | |
|
||||
| ASSA ABLOY | YRD210 Push Button Deadbolt | All | [yale_yrd210_00_000](yale_yrd210_00_000.md) | Lock |
|
||||
| Leviton | DZPA1 Plug-in Appliance Module | All | [leviton_dzpa1_00_000](leviton_dzpa1_00_000.md) | PowerOutlet |
|
||||
| Fibargroup | FGFS101 Flood Sensor | All up to 3.0 | [fibaro_fgfs101_00_000](fibaro_fgfs101_00_000.md) | |
|
||||
| Linear Corp | NGD00Z-4 Garage Door Controller | All | [linear_ngd00z4_00_000](linear_ngd00z4_00_000.md) | GarageDoor |
|
||||
|
@ -603,6 +609,7 @@ and links to more detailed information about each thing.
|
|||
| Zooz | ZEN15 Power Switch | All | [zooz_zen15_00_000](zooz_zen15_00_000.md) | |
|
||||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZW20RM In-wall Smart Meter Duplex Receptacle | All | [enerwave_zw20rm_00_000](enerwave_zw20rm_00_000.md) | |
|
||||
| McoHome Technology Co., Ltd | MH-S411 Touch Panel Switch (Single) | All | [mcohome_mhs411_00_000](mcohome_mhs411_00_000.md) | |
|
||||
| Willis Electric Co., Ltd. | NZW97 Inovelli Outdoor Smart Plug (2 Channel) | All | [willis_nzw97_00_000](willis_nzw97_00_000.md) | PowerOutlet |
|
||||
| Fakro | ZWS12 Chain Actuator | All | [fakro_zws12_00_000](fakro_zws12_00_000.md) | |
|
||||
| Sigma Designs (Former Zensys) | SM-PZ701U Z-Wave power plug | All | [sigma_smpz701u_00_000](sigma_smpz701u_00_000.md) | |
|
||||
| Z-Wave.Me | ZME_05461 Double switch | All | [zwaveme_zme05461_00_000](zwaveme_zme05461_00_000.md) | WallSwitch |
|
||||
|
@ -691,6 +698,7 @@ and links to more detailed information about each thing.
|
|||
| Wenzhou MTLC Electric Appliances Co.,Ltd. | ZWN-333 Plug-in Appliance Module | All | [enerwave_zwn333_00_000](enerwave_zwn333_00_000.md) | |
|
||||
| Popp & Co | 004001 Smoke Detector and Siren | All | [popp_004001_00_000](popp_004001_00_000.md) | SmokeDetector |
|
||||
| Zooz | ZEN22 Z-Wave Plus Dimmer Light Switch | All | [zooz_zen22_00_000](zooz_zen22_00_000.md) | |
|
||||
| TKB Home | TZ 10 Thermostat with LCD Screen | All | [tkb_tz10_00_000](tkb_tz10_00_000.md) | HVAC |
|
||||
| ThermoFloor | TF016 ZWave Thermostat | All up to 1.7 | [thermofloor_tf016_00_000](thermofloor_tf016_00_000.md) | RadiatorControl |
|
||||
| AEON Labs | ZW100 MultiSensor 6 | 1.8 to 1.9 | [aeon_zw100_01_008](aeon_zw100_01_008.md) | Sensor |
|
||||
| AEON Labs | ZW117 Range Extender 6 | All | [aeon_zw117_00_000](aeon_zw117_00_000.md) | |
|
||||
|
|
|
@ -0,0 +1,100 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: TZ 10 - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# TZ 10 Thermostat with LCD Screen
|
||||
|
||||
This describes the Z-Wave device *TZ 10*, manufactured by *TKB Home* with the thing type UID of ```tkb_tz10_00_000```.
|
||||
|
||||
Thermostat with LCD Screen
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Press "Manual" button three times in two seconds, "wireless" icon will start to blink
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the TZ 10 Thermostat with LCD Screen.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Sensor (temperature) | sensor_temperature | sensor_temperature | Temperature | Number |
|
||||
| Thermostat mode | thermostat_mode | tkb_tz10_00_000_thermostat_mode | Temperature | Number |
|
||||
| Thermostat Operating State | thermostat_state | thermostat_state | Temperature | Number |
|
||||
| Setpoint (heating) | thermostat_setpoint_heating | thermostat_setpoint | Temperature | Number |
|
||||
| Clock Time Offset | time_offset | time_offset | Temperature | Number |
|
||||
|
||||
|
||||
### Sensor (temperature)
|
||||
|
||||
#### Scale
|
||||
|
||||
Select the scale for temperature readings
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_scale |
|
||||
| Data Type | TEXT || Default Value | 0 |
|
||||
| Options | Celsius (0) |
|
||||
| | Fahrenheit (1) |
|
||||
|
||||
|
||||
### Setpoint (heating)
|
||||
|
||||
#### Scale
|
||||
|
||||
Select the scale to use for setpoints.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_scale |
|
||||
| Data Type | TEXT || Default Value | 0 |
|
||||
| Options | Celsius (0) |
|
||||
| | Fahrenheit (1) |
|
||||
|
||||
|
||||
### Clock Time Offset
|
||||
|
||||
#### Automatic Update Offset
|
||||
|
||||
The number of seconds difference in the time before it is reset
|
||||
Setting this will automatically update the devices clock when the time difference between the device, and the computer exceeds this number of seconds.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_offset |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 10 to 600 || Default Value | 60 |
|
||||
| Options | Disable Auto Update (0) |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the TZ 10 Thermostat with LCD Screen.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 2: State control | |
|
||||
|
||||
|
||||
#### 2: State control
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_2 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/794).
|
|
@ -25,7 +25,7 @@ The following table summarises the channels available for the ZD2102 Door Window
|
|||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Sensor Binary | sensor_binary | sensor_binary | Door | Switch |
|
||||
| Tamper Alarm | alarm_burglar | alarm_burglar | Door | Switch |
|
||||
| Tamper Alarm | alarm_tamper | alarm_tamper | | Switch |
|
||||
| Door Sensor | sensor_door | sensor_door | Door | Contact |
|
||||
| | battery-level | system.battery-level | | |
|
||||
|
||||
|
|
|
@ -14,7 +14,40 @@ Inovelli Smart Plug (2 Channel with Scene Control)
|
|||
|
||||
## Overview
|
||||
|
||||
The 2 ports smart plug provides one Z-Wave outlet for remote controlled by controller through Z-Wave gateway for internet of thing service and can be configured in Z-Wave sensor network, if Z-Wave certified controller features remote access, you can now control your device from your mobile phone devices. the other outlet will be manual On/Off by push button on front. The outlets have maximum load for 600W Incandescent, ½ HP motor or 1200W resistive.
|
||||
2 Controllable Outlets
|
||||
|
||||
Indoor
|
||||
|
||||
Wall Plug
|
||||
|
||||
120 VAC, 60 Hz
|
||||
|
||||
908.42 MHz
|
||||
|
||||
Max Load Outlet \#1 1200W (10A) Resistive
|
||||
|
||||
Max Load Outlet \#2 1200W (10A) Resistive
|
||||
|
||||
Max Simultaneous Load 16A
|
||||
|
||||
Max Range LoS 30 m
|
||||
|
||||
Operating Temperature Range 0°C to 40°C
|
||||
|
||||
UL E464831
|
||||
|
||||
FCC ID OXGZW36
|
||||
|
||||
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Auto-Inclusion 30 sec from power on
|
||||
|
||||
Backup-Inclusion Press button 5 times within 1 sec
|
||||
|
||||
(Tested to work with Network Wide Inclusion)
|
||||
|
||||
|
||||
## Channels
|
||||
|
|
|
@ -0,0 +1,79 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: NZW97 - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# NZW97 Inovelli Outdoor Smart Plug (2 Channel)
|
||||
|
||||
This describes the Z-Wave device *NZW97*, manufactured by *Willis Electric Co., Ltd.* with the thing type UID of ```willis_nzw97_00_000```.
|
||||
|
||||
Inovelli Outdoor Smart Plug (2 Channel)
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
2 Controllable Outlets
|
||||
|
||||
Outdoor IP65
|
||||
|
||||
20 cm Cord
|
||||
|
||||
High Temp Protection (OFF at 105°C)
|
||||
|
||||
Last Power State (Possible DEFAULT)
|
||||
|
||||
120 VAC, 60 Hz
|
||||
|
||||
908.42 MHz
|
||||
|
||||
Max Load Outlet \#1 1800W (15A) Resistive
|
||||
|
||||
Max Load Outlet \#2 1800W (15A) Resistive
|
||||
|
||||
Max Simultaneous Load 15A
|
||||
|
||||
Max Range LoS 100 m
|
||||
|
||||
Operating Temperature Range -20°C to 50°C
|
||||
|
||||
UL E464831
|
||||
|
||||
FCC ID OXGZW97
|
||||
|
||||
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Auto-Inclusion 30 sec from power on
|
||||
|
||||
Backup-Inclusion Press button 5 times within 1 sec
|
||||
|
||||
(Tested to work with Network Wide Inclusion)
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the NZW97 Inovelli Outdoor Smart Plug (2 Channel).
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Switch | switch_binary | switch_binary | Switch | Switch |
|
||||
| Alarm (heat) | alarm_heat | alarm_heat | | Switch |
|
||||
| Switch 1 | switch_binary1 | switch_binary | Switch | Switch |
|
||||
| Switch 2 | switch_binary2 | switch_binary | Switch | Switch |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the NZW97 Inovelli Outdoor Smart Plug (2 Channel).
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/791).
|
|
@ -19,6 +19,7 @@ The following table summarises the channels available for the YRD210 Push Button
|
|||
|---------|------------|------------------|----------|-----------|
|
||||
| | lock_door | lock_door | Door | Switch |
|
||||
| Alarm | alarm_general | alarm_general | Door | Switch |
|
||||
| Alarm Raw | alarm_raw | alarm_raw | | String |
|
||||
| | battery-level | system.battery-level | | |
|
||||
|
||||
|
||||
|
@ -34,7 +35,7 @@ Detailed information on each parameter can be found below.
|
|||
| 4: Wrong Code Entry Limit | The number of invalid code entries lock will accept before sending TAMPER Alarm. When numb... |
|
||||
| 5: Language | |
|
||||
| 7: Shutdown Time | Number of seconds unit will be inoperable after number of wrong code entries is exceeded. |
|
||||
| 8: Operating Mode | Normal Mode Vacation Mode - all user codes disabled Privacy Mode - all user codes disabled... |
|
||||
| 8: Operating Mode | |
|
||||
| 1: Alarm Reports | |
|
||||
|
||||
|
||||
|
@ -114,7 +115,16 @@ Number of seconds unit will be inoperable after number of wrong code entries is
|
|||
|
||||
#### 8: Operating Mode
|
||||
|
||||
Normal Mode Vacation Mode - all user codes disabled Privacy Mode - all user codes disabled and RF Lock/Unlock disabled
|
||||
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Normal Mode
|
||||
|
||||
Vacation Mode - all user codes disabled
|
||||
|
||||
Privacy Mode - all user codes disabled and RF Lock/Unlock disabled
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|
|
|
@ -0,0 +1,140 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: ZEN24 - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# ZEN24 Z-Wave Plus Toggle Dimmer Light Switch Ver 2.0
|
||||
|
||||
This describes the Z-Wave device *ZEN24*, manufactured by *Zooz* with the thing type UID of ```zooz_zen24_00_000```.
|
||||
|
||||
Z-Wave Plus Toggle Dimmer Light Switch Ver 2.0
|
||||
|
||||
|
||||
## Overview
|
||||
|
||||
* Manual or remote on/off and dimming control from your mobile device or computer (when included to a Z-Wave gateway controller)
|
||||
* Universal 3-way capability – works with existing 3-way switches as long as neutral is present
|
||||
* Z-Wave Plus with improved 500 chip for faster and safer wireless communication
|
||||
* Works with LED, CFL, and incandescent bulbs
|
||||
* Remembers and restores on/off / brightness status after power failure
|
||||
* Based on universal multilevel switch command class - supported by most Z-Wave controllers
|
||||
* May be associated and grouped with other Z-Wave devices for advanced home automation
|
||||
* Air-gap switch for added safety
|
||||
* Classic toggle design
|
||||
* Built-in Z-Wave signal repeater for a stronger, more reliable network
|
||||
|
||||
|
||||
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
1. Bring your Z-Wave gateway hub or controller as close to the switch as possible
|
||||
|
||||
2. Put your Z-Wave controller into inclusion mode
|
||||
|
||||
3. Toggle the switch UP 3 times very quickly to finalize the inclusion process
|
||||
|
||||
4. A new dimming device will appear on your controller's device list
|
||||
|
||||
**TROUBLESHOOTING TIPS:**
|
||||
|
||||
If you are unable to include the Z-Wave switch to your controller, please try one of the following:
|
||||
|
||||
* Bring the controller closer to your ZWave switch or use a hand-held secondary controller for inclusion
|
||||
* Toggle your Z-Wave switch UP even quicker at least 5 or 7 times once you put the controller into inclusion mode to ensure the command has gone through
|
||||
* Put your controller into EXCLUSION mode and toggle the switch DOWN 3 times quickly, then try adding it to your network again
|
||||
|
||||
|
||||
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
1. Bring your Z-Wave gateway hub or controller as close to the switch as possible
|
||||
|
||||
2. Put your Z-Wave controller into exclusion mode 3. Toggle the switch DOWN
|
||||
|
||||
3 times very quickly to complete the exclusion process
|
||||
|
||||
4. The device will disappear from your controller's device list
|
||||
|
||||
Please repeat the process following all steps carefully if the first attempt is unsuccessful.
|
||||
|
||||
|
||||
## Channels
|
||||
The following table summarises the channels available for the ZEN24 Z-Wave Plus Toggle Dimmer Light Switch Ver 2.0.
|
||||
|
||||
| Channel | Channel Id | Channel Type UID | Category | Item Type |
|
||||
|---------|------------|------------------|----------|-----------|
|
||||
| Dimmer | switch_dimmer | switch_dimmer | DimmableLight | Dimmer |
|
||||
|
||||
|
||||
### Dimmer
|
||||
|
||||
#### Restore Last Value
|
||||
|
||||
Restore Last Dimming level on ON.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_restoreLastValue |
|
||||
| Data Type | BOOLEAN || Default Value | true |
|
||||
| Options | Restore Last Value (true) |
|
||||
| | Restore Full Brightness (false) |
|
||||
|
||||
|
||||
### Device Configuration
|
||||
The following table provides a summary of the configuration parameters available in the ZEN24 Z-Wave Plus Toggle Dimmer Light Switch Ver 2.0.
|
||||
Detailed information on each parameter can be found below.
|
||||
|
||||
| Parameter | Description |
|
||||
|-------------|-------------|
|
||||
| 1: Toggle Control | Controls behavior of the toggle switch |
|
||||
| 1: Lifeline | |
|
||||
|
||||
|
||||
#### 1: Toggle Control
|
||||
|
||||
Controls behavior of the toggle switch
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Choose if you want the to turn the light on by clicking the toggle up or down Values:
|
||||
|
||||
0 – Toggle up turns the light on, toggle down turns the light off (default);
|
||||
|
||||
1 – Toggle up turns the light off, toggle down turns the light on
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | config_1_1 |
|
||||
| Data Type | INTEGER |
|
||||
| Range | 0 to 1 |
|
||||
| Default Value | 0 |
|
||||
|
||||
|
||||
#### 1: Lifeline
|
||||
|
||||
|
||||
|
||||
|
||||
##### Overview
|
||||
|
||||
Once the Z-Wave switch is added to your network, you are able to turn the device on or off and adjust brightness remotely from your mobile device, computer, or Z-Wave remote control. Depending on your Z-Wave gateway's home automation software capabilities, you may be able to associate your ZWave switch in groups with other ZWave devices to schedule scenes and create events. This toggle dimmer switch supports Group 1 with up to 5 devices for lifeline communication. This device will send MULTILEVEL REPORT to Group 1 when operated manually. Please refer to your controller's user guide for advanced programming instructions as they are a little different for each software.
|
||||
|
||||
|
||||
| Property | Value |
|
||||
|------------------|----------|
|
||||
| Configuration ID | group_1 |
|
||||
| Data Type | TEXT |
|
||||
| Range | to |
|
||||
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can edit the database [here](http://www.cd-jackson.com/index.php/zwave/zwave-device-database/zwave-device-list/devicesummary/789).
|
|
@ -26,7 +26,7 @@ The binding uses a standard Z-Wave serial stick to communicate with the Z-Wave d
|
|||
|
||||
## Supported Things
|
||||
|
||||
The ZWave binding provides support for a large number of devices (currently 688). See the [full list of supported things](doc/things.md).
|
||||
The ZWave binding provides support for a large number of devices (currently 696). See the [full list of supported things](doc/things.md).
|
||||
|
||||
|
||||
### ZWave Serial Adapter
|
||||
|
@ -115,7 +115,7 @@ This sets the network security key used in your network for securing communicati
|
|||
|
||||
### Thing Configuration
|
||||
|
||||
There are a large number of things supported by the Z-Wave binding, so configuration can not be covered here and you should refer to the device manual. A [summary of supported devices can be found here](doc/thing-list.md) and this links to the list of configuration parameters the binding provides.
|
||||
There are a large number of things supported by the Z-Wave binding, so configuration can not be covered here and you should refer to the device manual. A [summary of supported devices can be found here](doc/things.md) and this links to the list of configuration parameters the binding provides.
|
||||
|
||||
#### Textual Thing Configuration
|
||||
|
||||
|
|
|
@ -46,12 +46,11 @@ Test classes do not have to be annotated.
|
|||
1. Every bundle must contain a Maven pom.xml with a version and artifact name that is in sync with the manifest entry. The pom.xml must reference the correct parent pom (which is usually in the parent folder).
|
||||
1. Every bundle must contain a [NOTICE](https://www.eclipse.org/projects/handbook/#legaldoc) file, providing meta information about the bundle and license information about 3rd party content.
|
||||
1. Every bundle must contain a build.properties file, which lists all resources that should end up in the binary under `bin.includes`.
|
||||
1. The manifest must not contain any "Require-Bundle" entries (except for test fragment bundles, see below). Instead, "Import-Package" must be used.
|
||||
1. The manifest must not contain any "Require-Bundle" entries. Instead, "Import-Package" must be used.
|
||||
1. The manifest must not export any internal package.
|
||||
1. The manifest must not have any version constraint on package imports, unless this is thoughtfully added. Note that Eclipse automatically adds these constraints based on the version in the target platform, which might be too high in many cases.
|
||||
1. The manifest must include all services in the Service-Component entry. A good approach is to put OSGI-INF/*.xml in there.
|
||||
1. Every exported package of a bundle must be imported by the bundle itself again.
|
||||
1. Test fragments may have the bundles `org.junit`, `org.hamcrest` and `org.mockito` in the "Require-Bundle" section. This is the only exception to not having "Require-Bundle" at all.
|
||||
1. Any 3rd party content has to be added thoughtfully and version/license information has to be given in the NOTICE file.
|
||||
|
||||
## C. Language Levels and Libraries
|
||||
|
|
Loading…
Reference in New Issue