Updated external content (Jenkins build 1139)
parent
c7bf44dc95
commit
a539a7db0e
File diff suppressed because one or more lines are too long
|
@ -54,9 +54,9 @@ All channels are read-only.
|
|||
|
||||
| Channel | Type | Description |
|
||||
|-------------------|--------|------------------------------------------------------------------|
|
||||
| todaySignal | Number | The signal relating to the forecast consumption level for today. Values are 1 for normal consumption, 2 for strained electrical system and 3 for very strained electrical system. |
|
||||
| tomorrowSignal | Number | The signal relating to the forecast consumption level for tomorrow. Values are 1 for normal consumption, 2 for strained electrical system and 3 for very strained electrical system. |
|
||||
| currentHourSignal | Number | The signal relating to the forecast consumption level for the current hour. Values are 1 for normal consumption, 2 for strained electrical system and 3 for very strained electrical system. |
|
||||
| todaySignal | Number | The signal relating to the forecast consumption level for today. Values are 1 for normal consumption (green), 2 for strained electrical system (orange) and 3 for very strained electrical system (red). |
|
||||
| tomorrowSignal | Number | The signal relating to the forecast consumption level for tomorrow. Values are 1 for normal consumption (green), 2 for strained electrical system (orange) and 3 for very strained electrical system (red). |
|
||||
| currentHourSignal | Number | The signal relating to the forecast consumption level for the current hour. Values are 1 for normal consumption (green), 2 for strained electrical system (orange) and 3 for very strained electrical system (red). |
|
||||
|
||||
## Full Example
|
||||
|
||||
|
|
|
@ -27,14 +27,38 @@ This includes the name of the train, the final destination and the estimated tim
|
|||
|
||||
Since every stop is represented by a KVV-provided id, this id has to be figured out via an API call.
|
||||
|
||||
### Example Call for Stop 'Karlsruhe Volkswohnung'
|
||||
### Example Call for Stop 'Gottesauer Platz/BGV'
|
||||
|
||||
```bash
|
||||
# Request
|
||||
curl https://live.kvv.de/webapp/stops/byname/Volkswohnung\?key\=[APIKEY]
|
||||
export QUERY="gottesauer"
|
||||
curl https://www.kvv.de/tunnelEfaDirect.php?action=XSLT_STOPFINDER_REQUEST&name_sf=${QUERY}&outputFormat=JSON&type_sf=any
|
||||
```
|
||||
|
||||
# Response
|
||||
{"stops":[{"id":"de:8212:72","name":"Karlsruhe Volkswohnung","lat":49.00381654,"lon":8.40393026}]}
|
||||
The exact `id` may be extracted from the JSON-encoded reponse. E.g.
|
||||
|
||||
```json
|
||||
"points": [
|
||||
{
|
||||
"usage": "sf",
|
||||
"type": "any",
|
||||
"name": "Karlsruhe, Gottesauer Platz/BGV",
|
||||
"stateless": "7000006",
|
||||
"anyType": "stop",
|
||||
"sort": "2",
|
||||
"quality": "949",
|
||||
"best": "0",
|
||||
"object": "Gottesauer Platz/BGV",
|
||||
"mainLoc": "Karlsruhe",
|
||||
"modes": "1,4,5",
|
||||
"ref": {
|
||||
"id": "7000006",
|
||||
"gid": "de:08212:6",
|
||||
"omc": "8212000",
|
||||
"placeID": "15",
|
||||
"place": "Karlsruhe",
|
||||
"coords": "937855.00000,5723868.00000"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Channel Configuration
|
||||
|
@ -54,8 +78,8 @@ Each set consists of the following three channels:
|
|||
### Things
|
||||
|
||||
```things
|
||||
Bridge kvv:bridge:1 "Bridge" @ "Wohnzimmer" [ maxTrains="3", updateInterval="10", apiKey="" ] {
|
||||
stop gottesauerplatz "Gottesauer Platz/BGV" [ stopId="de:8212:6" ]
|
||||
Bridge kvv:bridge:1 "Bridge" @ "Wohnzimmer" [ maxTrains="3", updateInterval="10" ] {
|
||||
stop gottesauerplatz "Gottesauer Platz/BGV" [ stopId="7000006" ]
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -140,6 +140,7 @@ Channels available for each appliance type are listed below.
|
|||
| phase | String | Read | Current phase of the program running on the appliance |
|
||||
| rawPhase | Number | Read | Current phase of the program running on the appliance as raw number |
|
||||
| start | DateTime | Read | Programmed start time of the program |
|
||||
| end | DateTime | Read | End time of the program (programmed or running) |
|
||||
| duration | DateTime | Read | Duration of the program running on the appliance |
|
||||
| elapsed | DateTime | Read | Time elapsed in the program running on the appliance |
|
||||
| finish | DateTime | Read | Time to finish the program running on the appliance |
|
||||
|
@ -252,6 +253,7 @@ Channels available for each appliance type are listed below.
|
|||
| phase | String | Read | Current phase of the program running on the appliance |
|
||||
| rawPhase | Number | Read | Current phase of the program running on the appliance as raw number |
|
||||
| start | DateTime | Read | Programmed start time of the program |
|
||||
| end | DateTime | Read | End time of the program (programmed or running) |
|
||||
| duration | DateTime | Read | Duration of the program running on the appliance |
|
||||
| elapsed | DateTime | Read | Time elapsed in the program running on the appliance |
|
||||
| finish | DateTime | Read | Time to finish the program running on the appliance |
|
||||
|
@ -294,6 +296,7 @@ See oven.
|
|||
| phase | String | Read | Current phase of the program running on the appliance |
|
||||
| rawPhase | Number | Read | Current phase of the program running on the appliance as raw number |
|
||||
| start | DateTime | Read | Programmed start time of the program |
|
||||
| end | DateTime | Read | End time of the program (programmed or running) |
|
||||
| duration | DateTime | Read | Duration of the program running on the appliance |
|
||||
| elapsed | DateTime | Read | Time elapsed in the program running on the appliance |
|
||||
| finish | DateTime | Read | Time to finish the program running on the appliance |
|
||||
|
@ -358,6 +361,7 @@ See oven.
|
|||
| phase | String | Read | Current phase of the program running on the appliance |
|
||||
| rawPhase | Number | Read | Current phase of the program running on the appliance as raw number |
|
||||
| start | DateTime | Read | Programmed start time of the program |
|
||||
| end | DateTime | Read | End time of the program (programmed or running) |
|
||||
| duration | DateTime | Read | Duration of the program running on the appliance |
|
||||
| elapsed | DateTime | Read | Time elapsed in the program running on the appliance |
|
||||
| finish | DateTime | Read | Time to finish the program running on the appliance |
|
||||
|
|
|
@ -153,7 +153,7 @@ This parameter has the configuration ID ```config_36_1``` and is of type ```INTE
|
|||
|
||||
Applies only when the Color Transition Style is set to Fade Out/In
|
||||
Value 0 means constant speed. Value 1-30 sets the speed to accelerate/decelerate.
|
||||
The following option values may be configured, in addition to values in the range 0 to 30 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -23,25 +23,25 @@ FIBARO Swipe is a revolutionary battery gesture control pad that allows you to c
|
|||
|
||||
### Inclusion Information
|
||||
|
||||
1. Place the Swipe within the direct range of your Z-Wave controller.
|
||||
2. Set the main controller in (security/non-security) add mode (see the controller’s manual).
|
||||
3. Move and hold your hand close to the center of the pad.
|
||||
4. If the device is battery powered, high pitched beep will signal exiting the Standby Mode.
|
||||
5. Loud sound sequence will confrm entering the menu, keep holding your hand.
|
||||
6. After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confrm selection (two beeps will confrm validity).
|
||||
7. Wait for the adding process to end.
|
||||
8. Successful adding will be confrmed by the Z-Wave controller’s message and 3 short beeps (green visual indicator colour).
|
||||
1. Place the Swipe within the direct range of your Z-Wave controller.
|
||||
2. Set the main controller in (security/non-security) add mode (see the controller’s manual).
|
||||
3. Move and hold your hand close to the center of the pad.
|
||||
4. If the device is battery powered, high pitched beep will signal exiting the Standby Mode.
|
||||
5. Loud sound sequence will confirm entering the menu, keep holding your hand.
|
||||
6. After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confirm selection (two beeps will confrm validity).
|
||||
7. Wait for the adding process to end.
|
||||
8. Successful adding will be confirmed by the Z-Wave controller’s message and 3 short beeps (green visual indicator colour).
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
1. Place the Swipe within the direct range of your Z-Wave controller.
|
||||
2. Set the main controller in remove mode (see the controller’s manual).
|
||||
3. Move and hold your hand close to the center of the pad.
|
||||
4. If the device is battery powered, high pitched beep will signal exiting the Standby Mode.
|
||||
5. Loud sound sequence will confrm entering the menu, keep holding your hand.
|
||||
6. After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confrm selection (two beeps will confrm validity).
|
||||
7. Wait for the removing process to end.
|
||||
8. Successful removing will be confrmed by the Z-Wave controller’s message and sequence of 2 short beeps, pause, 1 short beep (red visual indicator colour).
|
||||
1. Place the Swipe within the direct range of your Z-Wave controller.
|
||||
2. Set the main controller in remove mode (see the controller’s manual).
|
||||
3. Move and hold your hand close to the center of the pad.
|
||||
4. If the device is battery powered, high pitched beep will signal exiting the Standby Mode.
|
||||
5. Loud sound sequence will confirm entering the menu, keep holding your hand.
|
||||
6. After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confirm selection (two beeps will confirm validity).
|
||||
7. Wait for the removing process to end.
|
||||
8. Successful removing will be confirmed by the Z-Wave controller’s message and sequence of 2 short beeps, pause, 1 short beep (red visual indicator colour).
|
||||
|
||||
### Wakeup Information
|
||||
|
||||
|
@ -52,6 +52,10 @@ The wakeup period does not impact the devices ability to report events or sensor
|
|||
|
||||
Use 1st menu position to wake up the device or click the button on the back of the device once.
|
||||
|
||||
### General Usage Information
|
||||
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the FGGC001 -:
|
||||
|
@ -191,7 +195,7 @@ This parameter has the configuration ID ```config_4_1``` and is of type ```INTEG
|
|||
|
||||
Check if the USB pwr supply is connected, update pwr mode
|
||||
This parameter determines how often the device checks if the USB power supply is connected and updates powering mode if needed.
|
||||
The following option values may be configured, in addition to values in the range 0 to 1080 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -244,7 +248,7 @@ This parameter has the configuration ID ```config_7_1``` and is of type ```INTEG
|
|||
|
||||
Defines which actions result in sending scenes to 1st “Lifeline” group.
|
||||
Parameter 10 values may be combined, e.g. 1+2=3 means that scenes for flick UP and DOWN are enabled.
|
||||
The following option values may be configured, in addition to values in the range 1 to 63 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -268,7 +272,7 @@ Define sent command for specified association groups.
|
|||
Parameter defines how commands are sent in specified association groups: as secure or non-secure. Parameter is active only in Z-Wave network security mode. It does not apply to 1st “Lifeline” association group.
|
||||
|
||||
Parameter 11 values may be combined, e.g. 1+2=3 means that 2nd & 3rd group are sent as secure.
|
||||
The following option values may be configured, in addition to values in the range 1 to 31 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
@ -295,7 +299,7 @@ After disabling Toggle Mode a single flick will turn the device ON and the same
|
|||
Parameter 12 values may be combined, e.g. 1+2=3 means that 2nd & 3rd group are selected.
|
||||
|
||||
**N.B. Disabling Toggle Mode will introduce delay when performing single gestures.**
|
||||
The following option values may be configured, in addition to values in the range 1 to 15 -:
|
||||
The following option values may be configured -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -0,0 +1,232 @@
|
|||
---
|
||||
layout: documentation
|
||||
title: WS15Z5-1 - ZWave
|
||||
---
|
||||
|
||||
{% include base.html %}
|
||||
|
||||
# WS15Z5-1 Wall Mounted Switch
|
||||
This describes the Z-Wave device *WS15Z5-1*, manufactured by *Linear Corp* with the thing type UID of ```linear_ws15z5_00_000```.
|
||||
|
||||
The device is in the category of *Wall Switch*, defining Any device attached to the wall that controls a binary status of something, for ex. a light switch.
|
||||
|
||||

|
||||
|
||||
|
||||
The WS15Z5-1 supports routing. This allows the device to communicate using other routing enabled devices as intermediate routers. This device is also able to participate in the routing of data between other devices in the mesh network.
|
||||
|
||||
## Overview
|
||||
|
||||
The GoControl™ family of Z-Wave® certified wireless Lighting Products (smart LED fixtures, bulbs, switches, dimmers, outlets and plug-in modules) Control Products (thermostats, irrigation controller and garage door controller) and Sensors (flood, leak, alert sounder, motion sensor and door/window sensor) bring a new level of intelligent wireless Home Automation capability to commercial and residential environments.
|
||||
|
||||
The Z-Wave wireless protocol is an international wireless standard for remote home automation, security and other applications. This product can be included and operated in any Z-Wave network with other Z-Wave certified devices from other manufacturers and/or other applications. All non-battery operated nodes within the network will act as repeaters regardless of vendor to increase reliability of the network.
|
||||
|
||||
The WS15Z5-1 Wall Mount Switch allows remote ON/OFF control of loads connected to the switch, and is easily wired in place of a standard wall switch.
|
||||
|
||||
GoControl Z-Wave products are easy to install, are Z-Wave certified, and allow dealers to create an integrated wireless network with nearly limitless expansion and interoperability with security, energy management, home entertainment, appliances, and more.
|
||||
|
||||
DANGER! SHOCK HAZARD. Read and understand these instructions before installing. This device is intended for installation in accordance with the National Electric code and local regulations in the United States, or the Canadian Electrical Code and local regulations in Canada. It is recommended that a qualified electrician perform this installation. Make sure the load controlled by the switch does not exceed 1800 watts. For indoor use only. Retain instructions for future use.
|
||||
|
||||
The WS15Z5-1 contains a Z-Wave 500 Series Module that supports Z-Wave Plus® features. A Z-Wave certified portable or stationary Controller can communicate with the Z-Wave 500 Series Module.
|
||||
|
||||
Depending on the capability of the Controller or gateway software, the following operations can be performed with the WS15Z5-1. Refer to the Controller or gateway manual for details.
|
||||
|
||||
* Turn the load ON and OFF.
|
||||
* Add or Remove the WS15Z5-1.
|
||||
* Assign the WS15Z5-1 to a specific Group/Scene and/or to include the load as part of ALL ON or ALL OFF system commands.
|
||||
* Over-the-air firmware update by the gateway or static Controller.
|
||||
* Lifeline function which automatically notifies the associated modules and the network that a manually reset device is no longer in the network, thus, the corresponding association becomes invalid.
|
||||
|
||||
### Inclusion Information
|
||||
|
||||
Refer to your Controller operating instructions to add this switch under the command of the Wireless Controller.
|
||||
|
||||
1. With your Controller in Discovery or Add Mode, tap the switch. The LED will blink slowly when in ADD Mode.
|
||||
2. You should see an indication on your Controller that the “device was added” to the network and the LED will stop blinking.
|
||||
3. The device will appear in the list of Switches. It should display as a switch.
|
||||
|
||||
If the Controller/Gateway shows the addition failed, repeat Steps 1-3.
|
||||
|
||||
✓ NOTE: If you have trouble adding the WS15Z5-1 to a group it may be that the Home ID and Node ID were not cleared from it after testing. You must first “RESET UNIT” to remove it from the network. Although adding it to a group includes it in the network, removing it from a group does not remove it from the network. If removed from a group, it functions as a repeater (only). “RESET UNIT” removes it completely from the network.
|
||||
|
||||
### Exclusion Information
|
||||
|
||||
The WS15Z5-1 can be removed from the network by the Controller/Gateway. Refer to the Controller operating instructions for details.
|
||||
|
||||
1. Set the Controller into Removal Mode and follow its instruction to delete the WS15Z5-1 from the Controller.
|
||||
2. Remove the switch by tapping the paddle 2 times. The LED will begin blinking slowly for 10 seconds indicating that it has been removed.
|
||||
3. You should see an indication on your Controller that the “device was removed” from the network.
|
||||
|
||||
### General Usage Information
|
||||
|
||||
Wire this switch in place of a current wall switch according to the diagram above. When used, WS15Z5-1’s are required to be wired to the same line (or neutral) which is also wired to the load being controlled, and not wired to any other neutral. If multiple neutrals are tied together in one box, separate the neutrals to preserve the integrity of the WS15Z5-1 circuit.
|
||||
|
||||
✓ CAUTION! Do not wire unit “live” (with power on the circuit).
|
||||
|
||||
The switch paddle on the WS15Z5-1 allows the user to:
|
||||
|
||||
* Turn the attached load on or off.
|
||||
* Tapping top of switch turns the load attached ON.
|
||||
* Tapping bottom of switch turns the load attached OFF
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the WS15Z5-1 -:
|
||||
|
||||
| Channel Name | Channel ID | Channel Type | Category | Item Type |
|
||||
|--------------|------------|--------------|----------|-----------|
|
||||
| Switch | switch_binary | switch_binary | Switch | Switch |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
| Scene Number | scene_number | scene_number | | Number |
|
||||
|
||||
### Switch
|
||||
Switch the power on and off.
|
||||
|
||||
The ```switch_binary``` channel is of type ```switch_binary``` and supports the ```Switch``` item and is in the ```Switch``` category.
|
||||
|
||||
### Scene Number
|
||||
Triggers when a scene button is pressed.
|
||||
|
||||
The ```scene_number``` channel is of type ```scene_number``` and supports the ```Number``` item.
|
||||
|
||||
### Scene Number
|
||||
Triggers when a scene button is pressed.
|
||||
|
||||
The ```scene_number``` channel is of type ```scene_number``` and supports the ```Number``` item.
|
||||
This channel provides the scene, and the event as a decimal value in the form ```<scene>.<event>```. The scene number is set by the device, and the event is as follows -:
|
||||
|
||||
| Event ID | Event Description |
|
||||
|----------|--------------------|
|
||||
| 0 | Single key press |
|
||||
| 1 | Key released |
|
||||
| 2 | Key held down |
|
||||
| 3 | Double keypress |
|
||||
| 4 | Tripple keypress |
|
||||
| 5 | 4 x keypress |
|
||||
| 6 | 5 x keypress |
|
||||
|
||||
|
||||
|
||||
## Device Configuration
|
||||
|
||||
The following table provides a summary of the 2 configuration parameters available in the WS15Z5-1.
|
||||
Detailed information on each parameter can be found in the sections below.
|
||||
|
||||
| Param | Name | Description |
|
||||
|-------|-------|-------------|
|
||||
| 3 | Night Light | Set LED behavior |
|
||||
| 4 | Invert Switch | Invert top of switch to off |
|
||||
| | Switch All Mode | Set the mode for the switch when receiving SWITCH ALL commands |
|
||||
|
||||
### Parameter 3: Night Light
|
||||
|
||||
Set LED behavior
|
||||
By default, the LED on the WS15Z5-1 will turn OFF when the load attached is turned ON. To make the LED turn ON when the load attached is turned ON, set Parameter 3 to a value of 1.
|
||||
The following option values may be configured, in addition to values in the range 0 to 4 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | LED OFF when the load is on, and ON when the load is off (default - ni |
|
||||
| 1 | LED ON when the load is on, and OFF when the load is off |
|
||||
| 2 | LED is always on |
|
||||
| 3 | LED is always off |
|
||||
| 4 | LED blinks during RF transmissions from or to the device |
|
||||
|
||||
The manufacturer defined default value is ```0``` (LED OFF when the load is on, and ON when the load is off (default - ni).
|
||||
|
||||
This parameter has the configuration ID ```config_3_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
### Parameter 4: Invert Switch
|
||||
|
||||
Invert top of switch to off
|
||||
To change the top of the switch to OFF and the bottom of the switch ON, set Parameter 4 to a value of 1.
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Top of switch is ON, bottom of switch is OFF (default) |
|
||||
| 1 | Bottom of switch is ON, top of switch is OFF |
|
||||
|
||||
The manufacturer defined default value is ```0``` (Top of switch is ON, bottom of switch is OFF (default)).
|
||||
|
||||
This parameter has the configuration ID ```config_4_1``` and is of type ```INTEGER```.
|
||||
|
||||
### Switch All Mode
|
||||
|
||||
Set the mode for the switch when receiving SWITCH ALL commands.
|
||||
|
||||
The following option values may be configured -:
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | Exclude from All On and All Off groups |
|
||||
| 1 | Include in All On group |
|
||||
| 2 | Include in All Off group |
|
||||
| 255 | Include in All On and All Off groups |
|
||||
|
||||
This parameter has the configuration ID ```switchall_mode``` and is of type ```INTEGER```.
|
||||
|
||||
|
||||
## Association Groups
|
||||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The WS15Z5-1 supports 3 association groups.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
The Lifeline association group reports device status to a hub and is not designed to control other devices directly. When using the Lineline group with a hub, in most cases, only the lifeline group will need to be configured and normally the hub will perform this automatically during the device initialisation.
|
||||
Lifeline (Group 1)
|
||||
Group 1 is the “Lifeline” group and must be assigned the Node ID of the Z-Wave Controller to which unsolicited notifications from the WS15Z5-1 will be sent.
|
||||
|
||||
Group 1 supports a single Node ID. The Z-Wave Controller should set the Lifeline Association automatically after inclusion.
|
||||
|
||||
Association group 1 supports 1 node.
|
||||
|
||||
### Group 2: Switch Group
|
||||
|
||||
Group for Switches (Group 2)
|
||||
Group 2 nodes will be sent BASIC On/Off commands and is intended to control switches like the GoControl WS15Z5.
|
||||
|
||||
Association group 2 supports 5 nodes.
|
||||
|
||||
### Group 3: Dimmer Group
|
||||
|
||||
Group for Dimmers (Group 3)
|
||||
Group 3 nodes will be sent Multilevel Switch commands and is intended to control dimmers like the GoControl WD500Z5.
|
||||
|
||||
Association group 3 supports 5 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
||||
### Endpoints
|
||||
|
||||
#### Endpoint 0
|
||||
|
||||
| Command Class | Comment |
|
||||
|---------------|---------|
|
||||
| COMMAND_CLASS_NO_OPERATION_V1| |
|
||||
| COMMAND_CLASS_BASIC_V1| |
|
||||
| COMMAND_CLASS_SWITCH_BINARY_V1| |
|
||||
| COMMAND_CLASS_SWITCH_ALL_V1| |
|
||||
| COMMAND_CLASS_SCENE_ACTIVATION_V1| |
|
||||
| COMMAND_CLASS_SCENE_ACTUATOR_CONF_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_GRP_INFO_V1| |
|
||||
| COMMAND_CLASS_DEVICE_RESET_LOCALLY_V1| |
|
||||
| COMMAND_CLASS_CENTRAL_SCENE_V2| |
|
||||
| COMMAND_CLASS_ZWAVEPLUS_INFO_V1| |
|
||||
| COMMAND_CLASS_CONFIGURATION_V1| |
|
||||
| COMMAND_CLASS_MANUFACTURER_SPECIFIC_V1| |
|
||||
| COMMAND_CLASS_POWERLEVEL_V1| |
|
||||
| COMMAND_CLASS_FIRMWARE_UPDATE_MD_V1| |
|
||||
| COMMAND_CLASS_ASSOCIATION_V2| |
|
||||
| COMMAND_CLASS_VERSION_V2| |
|
||||
|
||||
### Documentation Links
|
||||
|
||||
* [Manual](https://opensmarthouse.org/zwavedatabase/1521/reference/WS15Z5-1-manual.pdf)
|
||||
|
||||
---
|
||||
|
||||
Did you spot an error in the above definition or want to improve the content?
|
||||
You can [contribute to the database here](https://opensmarthouse.org/zwavedatabase/1521).
|
|
@ -30,6 +30,10 @@ Scene and NWI capable wall mounted switch
|
|||
2. Remove the switch by tapping the paddle 2 times.
|
||||
3. You should see an indication on your Controller that the “device was removed” from the network.
|
||||
|
||||
### General Usage Information
|
||||
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
The following table summarises the channels available for the WS15Z-1 -:
|
||||
|
@ -78,15 +82,18 @@ Detailed information on each parameter can be found in the sections below.
|
|||
### Parameter 3: Night Light
|
||||
|
||||
By default, the LED will turn OFF when the lead attached is turned ON.
|
||||
|
||||
The following option values may be configured -:
|
||||
By default, the LED on the WS15Z-1 will turn OFF when the load attached is turned ON. To make the LED turn ON when the load attached is turned ON, set Parameter 3 to a value of 1.
|
||||
The following option values may be configured, in addition to values in the range 0 to 4 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
| 0 | On when load is on |
|
||||
| 1 | Off when load is on |
|
||||
| 0 | LED OFF when the load is on, and ON when the load is off |
|
||||
| 1 | LED ON when the load is on, and OFF when the load is off |
|
||||
| 2 | LED is always on |
|
||||
| 3 | LED is always off |
|
||||
| 4 | LED blinks during RF transmissions from or to the device |
|
||||
|
||||
The manufacturer defined default value is ```1``` (Off when load is on).
|
||||
The manufacturer defined default value is ```0``` (LED OFF when the load is on, and ON when the load is off).
|
||||
|
||||
This parameter has the configuration ID ```config_3_1``` and is of type ```INTEGER```.
|
||||
|
||||
|
@ -94,8 +101,8 @@ This parameter has the configuration ID ```config_3_1``` and is of type ```INTEG
|
|||
### Parameter 4: Invert Switch
|
||||
|
||||
To change the top of the switch to OFF and the bottom of the switch ON.
|
||||
|
||||
The following option values may be configured -:
|
||||
To change the top of the switch to OFF and the bottom of the switch ON, set Parameter 4 to a value of 1.
|
||||
The following option values may be configured, in addition to values in the range 0 to 1 -:
|
||||
|
||||
| Value | Description |
|
||||
|--------|-------------|
|
||||
|
|
|
@ -336,7 +336,7 @@ This parameter has the configuration ID ```config_16_1``` and is of type ```INTE
|
|||
|
||||
Association groups allow the device to send unsolicited reports to the controller, or other devices in the network. Using association groups can allow you to eliminate polling, providing instant feedback of a device state change without unnecessary network traffic.
|
||||
|
||||
The ZEN71 supports 1 association group.
|
||||
The ZEN71 supports 2 association groups.
|
||||
|
||||
### Group 1: Lifeline
|
||||
|
||||
|
@ -344,6 +344,12 @@ The Lifeline association group reports device status to a hub and is not designe
|
|||
|
||||
Association group 1 supports 5 nodes.
|
||||
|
||||
### Group 2: Group 2
|
||||
|
||||
Send BASIC SET when operated manually
|
||||
|
||||
Association group 2 supports 5 nodes.
|
||||
|
||||
## Technical Information
|
||||
|
||||
### Endpoints
|
||||
|
|
|
@ -11,18 +11,19 @@
|
|||
<channels>
|
||||
<channel id="todaySignal" typeId="signal">
|
||||
<label>Today Signal</label>
|
||||
<description>The signal relating to the forecast consumption level for today. Values are 1 for normal consumption, 2
|
||||
for strained electrical system and 3 for very strained electrical system.</description>
|
||||
<description>The signal relating to the forecast consumption level for today. Values are 1 for normal consumption
|
||||
(green), 2 for strained electrical system (orange) and 3 for very strained electrical system (red)).</description>
|
||||
</channel>
|
||||
<channel id="tomorrowSignal" typeId="signal">
|
||||
<label>Tomorrow Signal</label>
|
||||
<description>The signal relating to the forecast consumption level for tomorrow. Values are 1 for normal
|
||||
consumption, 2 for strained electrical system and 3 for very strained electrical system.</description>
|
||||
consumption
|
||||
(green), 2 for strained electrical system (orange) and 3 for very strained electrical system (red).</description>
|
||||
</channel>
|
||||
<channel id="currentHourSignal" typeId="signal">
|
||||
<label>Current Hour Signal</label>
|
||||
<description>The signal relating to the forecast consumption level for the current hour. Values are 1 for normal
|
||||
consumption, 2 for strained electrical system and 3 for very strained electrical system.</description>
|
||||
consumption (green), 2 for strained electrical system (orange) and 3 for very strained electrical system (red).</description>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
|
@ -42,13 +43,13 @@
|
|||
<channel-type id="signal">
|
||||
<item-type>Number</item-type>
|
||||
<label>Consumption Signal</label>
|
||||
<description>The signal relating to the forecast consumption level. Values are 1 for normal consumption, 2 for
|
||||
strained electrical system and 3 for very strained electrical system.</description>
|
||||
<description>The signal relating to the forecast consumption level. Values are 1 for normal consumption (green), 2 for
|
||||
strained electrical system (orange) and 3 for very strained electrical system (red).</description>
|
||||
<state readOnly="true">
|
||||
<options>
|
||||
<option value="1">Green (normal consumption)</option>
|
||||
<option value="2">Orange (strained electrical system)</option>
|
||||
<option value="3">Red (very strained electrical system)</option>
|
||||
<option value="1">Green</option>
|
||||
<option value="2">Orange</option>
|
||||
<option value="3">Red</option>
|
||||
</options>
|
||||
</state>
|
||||
</channel-type>
|
||||
|
|
|
@ -8,17 +8,15 @@
|
|||
<description>The KVV bridge connects to the KVV API.</description>
|
||||
|
||||
<config-description>
|
||||
<parameter name="maxTrains" type="integer" required="true" min="0" max="127">
|
||||
<parameter name="maxTrains" type="integer" min="1" max="127">
|
||||
<label>Maximum Trains Listed</label>
|
||||
<description>Maximum number of trains listed.</description>
|
||||
<default>1</default>
|
||||
</parameter>
|
||||
<parameter name="updateInterval" type="integer" required="true" min="1">
|
||||
<parameter name="updateInterval" type="integer" min="1">
|
||||
<label>Update Interval</label>
|
||||
<description>Update interval in seconds.</description>
|
||||
</parameter>
|
||||
<parameter name="apiKey" type="text" required="true">
|
||||
<label>API key</label>
|
||||
<description>API key of the KVV API</description>
|
||||
<default>10</default>
|
||||
</parameter>
|
||||
</config-description>
|
||||
</bridge-type>
|
||||
|
|
|
@ -53,15 +53,23 @@
|
|||
<state readOnly="true"></state>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="start" advanced="true">
|
||||
<channel-type id="start">
|
||||
<item-type>DateTime</item-type>
|
||||
<label>Start Time</label>
|
||||
<description>Programmed start time of the program</description>
|
||||
<category>Time</category>
|
||||
<state readOnly="true" pattern="%1$tH:%1$tM"></state>
|
||||
<state readOnly="true"></state>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="duration" advanced="true">
|
||||
<channel-type id="end">
|
||||
<item-type>DateTime</item-type>
|
||||
<label>End Time</label>
|
||||
<description>End time of the program (programmed or running)</description>
|
||||
<category>Time</category>
|
||||
<state readOnly="true"></state>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="duration">
|
||||
<item-type>DateTime</item-type>
|
||||
<label>Duration</label>
|
||||
<description>Duration of the program running on the appliance</description>
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
<channel id="phase" typeId="phase"/>
|
||||
<channel id="rawPhase" typeId="rawPhase"/>
|
||||
<channel id="start" typeId="start"/>
|
||||
<channel id="end" typeId="end"/>
|
||||
<channel id="duration" typeId="duration"/>
|
||||
<channel id="elapsed" typeId="elapsed"/>
|
||||
<channel id="finish" typeId="finish"/>
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
<channel id="phase" typeId="phase"/>
|
||||
<channel id="rawPhase" typeId="rawPhase"/>
|
||||
<channel id="start" typeId="start"/>
|
||||
<channel id="end" typeId="end"/>
|
||||
<channel id="duration" typeId="duration"/>
|
||||
<channel id="elapsed" typeId="elapsed"/>
|
||||
<channel id="finish" typeId="finish"/>
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
<channel id="phase" typeId="phase"/>
|
||||
<channel id="rawPhase" typeId="rawPhase"/>
|
||||
<channel id="start" typeId="start"/>
|
||||
<channel id="end" typeId="end"/>
|
||||
<channel id="duration" typeId="duration"/>
|
||||
<channel id="elapsed" typeId="elapsed"/>
|
||||
<channel id="finish" typeId="finish"/>
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
<channel id="phase" typeId="phase"/>
|
||||
<channel id="rawPhase" typeId="rawPhase"/>
|
||||
<channel id="start" typeId="start"/>
|
||||
<channel id="end" typeId="end"/>
|
||||
<channel id="duration" typeId="duration"/>
|
||||
<channel id="elapsed" typeId="elapsed"/>
|
||||
<channel id="finish" typeId="finish"/>
|
||||
|
|
|
@ -113,6 +113,7 @@ Applies only when the Color Transition Style is set to Fade Out/In<br /> <h1>Ove
|
|||
<options>
|
||||
<option value="0">Constant Speed</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_37_4_000000E0" type="integer" groupName="configuration">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<thing-type id="fibaro_fggc001_00_000" listed="false">
|
||||
<label>FGGC001 Fibaro Swipe Scene Controller</label>
|
||||
<description><![CDATA[
|
||||
Fibaro Swipe Scene Controller<br /> <h1>Overview</h1><p>FIBARO Swipe is a revolutionary battery gesture control pad that allows you to control devices in your Z-Wave network without actually touching anything. Swipe up, down, left, right, make a circular gesture and use sequences to get full and intuitive control of your home. </p> <br /> <h2>Inclusion Information</h2><p>1. Place the Swipe within the direct range of your Z-Wave controller.<br />2. Set the main controller in (security/non-security) add mode (see the controller’s manual).<br />3. Move and hold your hand close to the center of the pad.<br />4. If the device is battery powered, high pitched beep will signal exiting the Standby Mode.<br />5. Loud sound sequence will confrm entering the menu, keep holding your hand.<br />6. After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confrm selection (two beeps will confrm validity).<br />7. Wait for the adding process to end.<br />8. Successful adding will be confrmed by the Z-Wave controller’s message and 3 short beeps (green visual indicator colour).</p> <br /> <h2>Exclusion Information</h2><p>1. Place the Swipe within the direct range of your Z-Wave controller.<br />2. Set the main controller in remove mode (see the controller’s manual).<br />3. Move and hold your hand close to the center of the pad.<br />4. If the device is battery powered, high pitched beep will signal exiting the Standby Mode.<br />5. Loud sound sequence will confrm entering the menu, keep holding your hand.<br />6. After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confrm selection (two beeps will confrm validity).<br />7. Wait for the removing process to end.<br />8. Successful removing will be confrmed by the Z-Wave controller’s message and sequence of 2 short beeps, pause, 1 short beep (red visual indicator colour).</p> <br /> <h2>Wakeup Information</h2><p>Use 1st menu position to wake up the device or click the button on the back of the device once. </p>
|
||||
Fibaro Swipe Scene Controller<br /> <h1>Overview</h1><p>FIBARO Swipe is a revolutionary battery gesture control pad that allows you to control devices in your Z-Wave network without actually touching anything. Swipe up, down, left, right, make a circular gesture and use sequences to get full and intuitive control of your home. </p> <br /> <h2>Inclusion Information</h2><ol><li>Place the Swipe within the direct range of your Z-Wave controller.</li><li>Set the main controller in (security/non-security) add mode (see the controller’s manual).</li><li>Move and hold your hand close to the center of the pad.</li><li>If the device is battery powered, high pitched beep will signal exiting the Standby Mode.</li><li>Loud sound sequence will confirm entering the menu, keep holding your hand.</li><li>After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confirm selection (two beeps will confrm validity).</li><li>Wait for the adding process to end.</li><li>Successful adding will be confirmed by the Z-Wave controller’s message and 3 short beeps (green visual indicator colour).</li></ol> <br /> <h2>Exclusion Information</h2><ol><li>Place the Swipe within the direct range of your Z-Wave controller.</li><li>Set the main controller in remove mode (see the controller’s manual).</li><li>Move and hold your hand close to the center of the pad.</li><li>If the device is battery powered, high pitched beep will signal exiting the Standby Mode.</li><li>Loud sound sequence will confirm entering the menu, keep holding your hand.</li><li>After hearing two short beeps (green indicator colour), withdraw the hand and perform swiping up gesture to confirm selection (two beeps will confirm validity).</li><li>Wait for the removing process to end.</li><li>Successful removing will be confirmed by the Z-Wave controller’s message and sequence of 2 short beeps, pause, 1 short beep (red visual indicator colour).</li></ol> <br /> <h2>Wakeup Information</h2><p>Use 1st menu position to wake up the device or click the button on the back of the device once. </p>
|
||||
]]></description>
|
||||
<category>RemoteControl</category>
|
||||
|
||||
|
@ -113,6 +113,7 @@ Check if the USB pwr supply is connected, update pwr mode<br /> <h1>Overview</h1
|
|||
<option value="0">Powering mode is not updated</option>
|
||||
<option value="1">Time interval (in minutes)</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_6_1" type="integer" groupName="configuration">
|
||||
|
@ -158,6 +159,7 @@ Defines which actions result in sending scenes to 1st “Lifeline” group.<br /
|
|||
<option value="32">Scenes for CCW circular gesture enabled</option>
|
||||
<option value="63">All commands enabled</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_11_1" type="integer" groupName="configuration">
|
||||
|
@ -173,6 +175,7 @@ Define sent command for specified association groups.<br /> <h1>Overview</h1><p>
|
|||
<option value="8">5th group "Flick RIGHT” sent as secure</option>
|
||||
<option value="16">6th group "Circular AirWheel” sent as secure</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_12_1" type="integer" groupName="configuration">
|
||||
|
@ -187,6 +190,7 @@ Choose control mode for 2nd-5th groups and scenes.<br /> <h1>Overview</h1><p>Par
|
|||
<option value="4">Toggle Mode enabled for 4th association group</option>
|
||||
<option value="8">Toggle Mode enabled for 5th association group</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_13_2" type="integer" groupName="configuration">
|
||||
|
|
|
@ -1,163 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="zwave"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0
|
||||
https://openhab.org/schemas/thing-description/v1.0.0">
|
||||
|
||||
<thing-type id="kwikset_912_00_000" listed="false">
|
||||
<label>Kwikset SmartCode 912 Touch Pad Keyed Entry Lever</label>
|
||||
<description><![CDATA[
|
||||
Touch Pad Keyed Entry Lever<br /> <h1>Overview</h1><p>The SmartCode touchpad smart lock lever with Home Connect technology enables the lock to wirelessly communicate with other devices in home. The lock allows the user (through a third-party smart home controller) to remotely check the door lock status, lock or unlock the door and receive notifications. The SmartCode lever is a one-touch locking motorized lever. With your personalized code, you can enter your home with the convenience of keyless entry and the back-lit keypad provides increased visibility. SmartCode is easy to install, program and use, and operates on 4 AA batteries. It also features SmartKey Security as the back-up keyway.</p> <br /> <h2>Inclusion Information</h2><ul><li>Initiate the process to add the lock to your system at your smart home controller before you enter any keycodes.</li> <li>When prompted by your smart home system to add the lock, press button “A” on the lock interior one time. The red LED will illuminate when the lock enters Add Mode.</li> <li>Please allow time for the controller to add the lock to your system.</li> </ul> <br /> <h2>Exclusion Information</h2><ul><li>Follow your smart home system’s instructions to remove the lock from the network.</li> <li>When prompted by the system, press button A” on the lock interior once. </li> <li>The red LED will illuminate when the lock enters Remove mode. </li> </ul>
|
||||
]]></description>
|
||||
<category>Lock</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
<channel id="lock_door" typeId="lock_door">
|
||||
<label>Door Lock</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_DOOR_LOCK</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_access" typeId="alarm_access">
|
||||
<label>Alarm (access) [Deprecated]</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=ACCESS_CONTROL</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_power" typeId="alarm_power">
|
||||
<label>Alarm (power)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=POWER_MANAGEMENT</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_burglar" typeId="alarm_burglar">
|
||||
<label>Alarm (burglar)</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM;type=BURGLAR</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="alarm_entry" typeId="alarm_entry">
|
||||
<label>Entry Notification</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_ALARM</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="battery-level" typeId="system.battery-level">
|
||||
<properties>
|
||||
<property name="binding:*:PercentType">COMMAND_CLASS_BATTERY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="time_offset" typeId="time_offset">
|
||||
<label>Clock Time Offset</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_TIME_PARAMETERS</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
<!-- DEVICE PROPERTY DEFINITIONS -->
|
||||
<properties>
|
||||
<property name="vendor">Black & Decker</property>
|
||||
<property name="modelId">Kwikset SmartCode 912</property>
|
||||
<property name="manufacturerId">0090</property>
|
||||
<property name="manufacturerRef">0003:0339</property>
|
||||
<property name="dbReference">1041</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
<config-description>
|
||||
|
||||
<!-- GROUP DEFINITIONS -->
|
||||
<parameter-group name="configuration">
|
||||
<context>setup</context>
|
||||
<label>Configuration Parameters</label>
|
||||
</parameter-group>
|
||||
|
||||
<parameter-group name="association">
|
||||
<context>link</context>
|
||||
<label>Association Groups</label>
|
||||
</parameter-group>
|
||||
|
||||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_31_1" type="integer" groupName="configuration">
|
||||
<label>31: Dipswitch Settings</label>
|
||||
<description><![CDATA[
|
||||
Dipswitch Settings<br /> <h1>Overview</h1><p>Configuration parameter is a one byte read only bit mask that returns the state of the user accessible dipswitches on the rear panel of the door lock. This is a read only parameter and cannot be used to set dipswitch settings.</p> <p>The following table shows the definition for the bits being used in the returned value: </p> <table><tr><td>Bit</td> <td>Description</td> </tr><tr><td>0 (0x01)</td> <td>Lock status LED (1:enabled)</td> </tr><tr><td>1 (0x02)</td> <td>Autolock setting (1:enabled)</td> </tr><tr><td>2 (0x04)</td> <td>Buzzer (1:enabled)</td> </tr><tr><td>3 (0x08)</td> <td> <p>Handing Invert (1:enabled)</p> </td> </tr></table><p><strong>Possible Values:</strong></p> <table><tr><td>0</td> <td>All features disabled</td> </tr><tr><td>1</td> <td>Lock status LED enabled</td> </tr><tr><td>2</td> <td>Autolock Enabled</td> </tr><tr><td>4</td> <td>Internal buzzer enabled</td> </tr><tr><td>8</td> <td>Handling invert enabled</td> </tr><tr><td>3</td> <td>Autolock & Lock status LED enabled</td> </tr><tr><td>5</td> <td>Internal buzzer and lock status LED enabled</td> </tr><tr><td>7</td> <td>Autolock, Internal buzzer, and lock status LED enabled</td> </tr><tr><td>15</td> <td>All Features enabled</td> </tr></table>
|
||||
]]></description>
|
||||
<default>5</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_33_4" type="integer" groupName="configuration">
|
||||
<label>33: first four most significant bytes of the SKU</label>
|
||||
<description><![CDATA[
|
||||
SKU (length = 8 bytes)<br /> <h1>Overview</h1><h1>Configuration Parameter 33 and 34</h1> <p>The Configuration Parameter 33 and 34 are used to set the SKU part numbers to the Kwikset locks. Configuration parameter 33 is the first four most significant bytes (MSB). Configuration parameter 34 is the least four significant bytes (LSB). Below describes how Configuration Parameter 33 and 34 are being used.</p> <ul><li>For a ZW Configuration Set, the DLM will first do a GET_SKU_ID to retrieve the full SKU from the lock, and the lock will respond with all 8 bytes. (If it’s not yet set, the DLM will consider that as all 0x30s.) The DLM changes only the appropriate 4 bytes in its local copy of the SKU, and it then sends the full 8 bytes down to the lock in a SET_SKU_ID.</li> <li>For a ZW Configuration Get, the DLM will do a GET_SKU_ID down to the lock, to which the lock will respond with all 8 bytes. The DLM will return the requested 4 bytes via ZW. If the SKU is not set, it will return all 0x30s (ASCII ‘0’s).</li> </ul>
|
||||
]]></description>
|
||||
<default>32</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_34_4" type="integer" groupName="configuration">
|
||||
<label>34: four least significant bytes of the SKU.</label>
|
||||
<description><![CDATA[
|
||||
SKU (length = 8 bytes)<br /> <h1>Overview</h1><h1>Configuration Parameter 33 and 34</h1> <p>The Configuration Parameter 33 and 34 are used to set the SKU part numbers to the Kwikset locks. Configuration parameter 33 is the first four most significant bytes (MSB). Configuration parameter 34 is the least four significant bytes (LSB). Below describes how Configuration Parameter 33 and 34 are being used.</p> <ul><li>For a ZW Configuration Set, the DLM will first do a GET_SKU_ID to retrieve the full SKU from the lock, and the loc will respond with all 8 bytes. (If it’s not yet set, the DLM will consider that as all 0x30s.) The DLM changes only the appropriate 4 bytes in its local copy of the SKU, and it then sends the full 8 bytes down to the lock in a SET_SKU_ID.</li> <li>For a ZW Configuration Get, the DLM will do a GET_SKU_ID down to the lock, to which the lock will respond with all 8 bytes. The DLM will return the requested 4 bytes via ZW. If the SKU is not set, it will return all 0x30s (ASCII ‘0’s).</li> </ul>
|
||||
]]></description>
|
||||
<default>32</default>
|
||||
<advanced>true</advanced>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_35_2" type="integer" groupName="configuration">
|
||||
<label>35: Lock Type</label>
|
||||
<description><![CDATA[
|
||||
Report the Unique ID of the lock type<br /> <h1>Overview</h1><p>The configuration Parameter 35 is used as read-only to report the Unique ID of the lock type.</p> <p>Released Board ID Unique ID</p> <p>910 Z-Wave (Legacy, FW 3.4) 0x00 0x00</p> <p>912 Z-Wave (Legacy, FW 3.2) 0x00 0x00</p> <p>910 Z-Wave 0x02 0x36</p> <p>912 Z-Wave 0x03 0x36</p> <p>914 Z-Wave 0x04 0x36</p> <p>916 Z-Wave 0x06 0x42</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_40_1" type="integer" groupName="configuration">
|
||||
<label>40: Factory Reset</label>
|
||||
<description><![CDATA[
|
||||
Reset Lock to Factory Default<br /> <h1>Overview</h1><p>The configuration Parameter 40 is used to set the lock to its factory default settings, except for the anti-theft setting.</p> <p>• A Read will show a “0”.</p> <p>• A Write “1” to perform factory reset.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Normal Operation</option>
|
||||
<option value="1">Have lock perform factory reset</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p>Z-Wave Plus Lifeline Supports the following types of unsolicited messages: Battery Report - sends periodic battery reports containing the battery percentage. Door Lock Operation Report - upon power up, this message will be sent to allow the controller to sync up with the current lock status. Notification Report - many notification types will be sent for status and alarms. The following notification types are supported: Access Control (V2), Home Security (V2), and Power Management (V2). Device Reset Locally Notification - this message will be sent to notify the smart home controller that the lock is resetting back to factory defaults and will be leaving the network.</p>
|
||||
]]></description>
|
||||
<multipleLimit>1</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Group 2</label>
|
||||
<description><![CDATA[
|
||||
<br /> <h1>Overview</h1><p>This group will provide all Notification reports as described for the Lifeline. This group allows other controllers, other than the lifeline, to receive these types of unsolicited messages as well.</p> <p>Supported Command Classes (18): Command Class Anti-theft V2 Command Class Association Group Info Command Class Association V2 Command Class Battery Command Class Configuration Command Class Device Reset Locally Command Class Door Lock Logging Command Class Door Lock V2 Command Class Firmware Update Md V3 Command Class Manufacturer Specific V2 Command Class Notification V4 Command Class Powerlevel Command Class Schedule Entry Lock V2 Command Class Security Command Class Time Parameters Command Class User Code Command Class Version V2 Command Class Z-Wave+ Info V2</p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -0,0 +1,124 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="zwave"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
|
||||
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0
|
||||
https://openhab.org/schemas/thing-description/v1.0.0">
|
||||
|
||||
<thing-type id="linear_ws15z5_00_000" listed="false">
|
||||
<label>WS15Z5-1 Wall Mounted Switch</label>
|
||||
<description><![CDATA[
|
||||
Wall Mounted Switch<br /> <h1>Overview</h1><p>The GoControl™ family of Z-Wave® certified wireless Lighting Products (smart LED fixtures, bulbs, switches, dimmers, outlets and plug-in modules) Control Products (thermostats, irrigation controller and garage door controller) and Sensors (flood, leak, alert sounder, motion sensor and door/window sensor) bring a new level of intelligent wireless Home Automation capability to commercial and residential environments.</p><p>The Z-Wave wireless protocol is an international wireless standard for remote home automation, security and other applications. This product can be included and operated in any Z-Wave network with other Z-Wave certified devices from other manufacturers and/or other applications. All non-battery operated nodes within the network will act as repeaters regardless of vendor to increase reliability of the network.</p><p>The WS15Z5-1 Wall Mount Switch allows remote ON/OFF control of loads connected to the switch, and is easily wired in place of a standard wall switch.</p><p>GoControl Z-Wave products are easy to install, are Z-Wave certified, and allow dealers to create an integrated wireless network with nearly limitless expansion and interoperability with security, energy management, home entertainment, appliances, and more.</p><p>DANGER! SHOCK HAZARD. Read and understand these instructions before installing. This device is intended for installation in accordance with the National Electric code and local regulations in the United States, or the Canadian Electrical Code and local regulations in Canada. It is recommended that a qualified electrician perform this installation. Make sure the load controlled by the switch does not exceed 1800 watts. For indoor use only. Retain instructions for future use.</p><p>The WS15Z5-1 contains a Z-Wave 500 Series Module that supports Z-Wave Plus® features. A Z-Wave certified portable or stationary Controller can communicate with the Z-Wave 500 Series Module.</p><p>Depending on the capability of the Controller or gateway software, the following operations can be performed with the WS15Z5-1. Refer to the Controller or gateway manual for details.</p><ul><li>Turn the load ON and OFF.</li><li>Add or Remove the WS15Z5-1.</li><li>Assign the WS15Z5-1 to a specific Group/Scene and/or to include the load as part of ALL ON or ALL OFF system commands.</li><li>Over-the-air firmware update by the gateway or static Controller.</li><li>Lifeline function which automatically notifies the associated modules and the network that a manually reset device is no longer in the network, thus, the corresponding association becomes invalid.</li></ul> <br /> <h2>Inclusion Information</h2><p>Refer to your Controller operating instructions to add this switch under the command of the Wireless Controller.</p><ol><li>With your Controller in Discovery or Add Mode, tap the switch. The LED will blink slowly when in ADD Mode.</li><li>You should see an indication on your Controller that the “device was added” to the network and the LED will stop blinking.</li><li>The device will appear in the list of Switches. It should display as a switch.</li></ol><p>If the Controller/Gateway shows the addition failed, repeat Steps 1-3.</p><p>✓ NOTE: If you have trouble adding the WS15Z5-1 to a group it may be that the Home ID and Node ID were not cleared from it after testing. You must first “RESET UNIT” to remove it from the network. Although adding it to a group includes it in the network, removing it from a group does not remove it from the network. If removed from a group, it functions as a repeater (only). “RESET UNIT” removes it completely from the network.</p> <br /> <h2>Exclusion Information</h2><p>The WS15Z5-1 can be removed from the network by the Controller/Gateway. Refer to the Controller operating instructions for details.</p><ol><li>Set the Controller into Removal Mode and follow its instruction to delete the WS15Z5-1 from the Controller.</li><li>Remove the switch by tapping the paddle 2 times. The LED will begin blinking slowly for 10 seconds indicating that it has been removed.</li><li>You should see an indication on your Controller that the “device was removed” from the network.</li></ol> <br /> <h2>Wakeup Information</h2><p><br /></p>
|
||||
]]></description>
|
||||
<category>WallSwitch</category>
|
||||
|
||||
<!-- CHANNEL DEFINITIONS -->
|
||||
<channels>
|
||||
<channel id="switch_binary" typeId="switch_binary">
|
||||
<label>Switch</label>
|
||||
<properties>
|
||||
<property name="binding:*:OnOffType">COMMAND_CLASS_SWITCH_BINARY</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="scene_number" typeId="scene_number">
|
||||
<label>Scene Number</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_SCENE_ACTIVATION</property>
|
||||
</properties>
|
||||
</channel>
|
||||
<channel id="scene_number" typeId="scene_number">
|
||||
<label>Scene Number</label>
|
||||
<properties>
|
||||
<property name="binding:*:DecimalType">COMMAND_CLASS_CENTRAL_SCENE</property>
|
||||
</properties>
|
||||
</channel>
|
||||
</channels>
|
||||
|
||||
<!-- DEVICE PROPERTY DEFINITIONS -->
|
||||
<properties>
|
||||
<property name="vendor">Linear Corp</property>
|
||||
<property name="modelId">WS15Z5-1</property>
|
||||
<property name="manufacturerId">014F</property>
|
||||
<property name="manufacturerRef">5753:3535</property>
|
||||
<property name="dbReference">1521</property>
|
||||
<property name="defaultAssociations">1</property>
|
||||
</properties>
|
||||
|
||||
<!-- CONFIGURATION DESCRIPTIONS -->
|
||||
<config-description>
|
||||
|
||||
<!-- GROUP DEFINITIONS -->
|
||||
<parameter-group name="configuration">
|
||||
<context>setup</context>
|
||||
<label>Configuration Parameters</label>
|
||||
</parameter-group>
|
||||
|
||||
<parameter-group name="association">
|
||||
<context>link</context>
|
||||
<label>Association Groups</label>
|
||||
</parameter-group>
|
||||
|
||||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<label>3: Night Light</label>
|
||||
<description><![CDATA[
|
||||
Set LED behavior<br /> <h1>Overview</h1><p>By default, the LED on the WS15Z5-1 will turn OFF when the load attached is turned ON. To make the LED turn ON when the load attached is turned ON, set Parameter 3 to a value of 1.<br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">LED OFF when the load is on, and ON when the load is off (default - ni</option>
|
||||
<option value="1">LED ON when the load is on, and OFF when the load is off</option>
|
||||
<option value="2">LED is always on</option>
|
||||
<option value="3">LED is always off</option>
|
||||
<option value="4">LED blinks during RF transmissions from or to the device</option>
|
||||
</options>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<label>4: Invert Switch</label>
|
||||
<description><![CDATA[
|
||||
Invert top of switch to off<br /> <h1>Overview</h1><p>To change the top of the switch to OFF and the bottom of the switch ON, set Parameter 4 to a value of 1.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Top of switch is ON, bottom of switch is OFF (default)</option>
|
||||
<option value="1">Bottom of switch is ON, top of switch is OFF</option>
|
||||
</options>
|
||||
</parameter>
|
||||
|
||||
<!-- ASSOCIATION DEFINITIONS -->
|
||||
<parameter name="group_1" type="text" groupName="association" multiple="true">
|
||||
<label>1: Lifeline</label>
|
||||
<description><![CDATA[
|
||||
Lifeline (Group 1)<br /> <h1>Overview</h1><p>Group 1 is the “Lifeline” group and must be assigned the Node ID of the Z-Wave Controller to which unsolicited notifications from the WS15Z5-1 will be sent.</p><p>Group 1 supports a single Node ID. The Z-Wave Controller should set the Lifeline Association automatically after inclusion.</p>
|
||||
]]></description>
|
||||
<multipleLimit>1</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Switch Group</label>
|
||||
<description><![CDATA[
|
||||
Group for Switches (Group 2)<br /> <h1>Overview</h1><p>Group 2 nodes will be sent BASIC On/Off commands and is intended to control switches like the GoControl WS15Z5.<br /></p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_3" type="text" groupName="association" multiple="true">
|
||||
<label>3: Dimmer Group</label>
|
||||
<description><![CDATA[
|
||||
Group for Dimmers (Group 3)<br /> <h1>Overview</h1><p>Group 3 nodes will be sent Multilevel Switch commands and is intended to control dimmers like the GoControl WD500Z5. </p>
|
||||
]]></description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
<advanced>true</advanced>
|
||||
</parameter>
|
||||
|
||||
</config-description>
|
||||
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -8,7 +8,7 @@
|
|||
<thing-type id="linear_ws15z_00_000" listed="false">
|
||||
<label>WS15Z-1 Wall Mounted Switch</label>
|
||||
<description><![CDATA[
|
||||
Wall Mounted Switch<br /> <h1>Overview</h1><p>Scene and NWI capable wall mounted switch</p> <br /> <h2>Inclusion Information</h2><ol><li>With your Controller in Discovery or Add Mode, tap the switch once for Network Wide Inclusion. Tap twice for Standard Inclusion.</li> <li>You should see an indication on your Controller that the “device was added” to the network and the LED will stop blinking.</li> </ol> <br /> <h2>Exclusion Information</h2><ol><li>Set the Controller into Removal Mode and follow its instruction to delete the WS15Z-1 from the Controller.</li> <li>Remove the switch by tapping the paddle 2 times.</li> <li>You should see an indication on your Controller that the “device was removed” from the network.</li> </ol>
|
||||
Wall Mounted Switch<br /> <h1>Overview</h1><p>Scene and NWI capable wall mounted switch</p> <br /> <h2>Inclusion Information</h2><ol><li>With your Controller in Discovery or Add Mode, tap the switch once for Network Wide Inclusion. Tap twice for Standard Inclusion.</li> <li>You should see an indication on your Controller that the “device was added” to the network and the LED will stop blinking.</li> </ol> <br /> <h2>Exclusion Information</h2><ol><li>Set the Controller into Removal Mode and follow its instruction to delete the WS15Z-1 from the Controller.</li> <li>Remove the switch by tapping the paddle 2 times.</li> <li>You should see an indication on your Controller that the “device was removed” from the network.</li> </ol> <br /> <h2>Wakeup Information</h2><p><br /></p>
|
||||
]]></description>
|
||||
<category>WallSwitch</category>
|
||||
|
||||
|
@ -45,7 +45,7 @@ Wall Mounted Switch<br /> <h1>Overview</h1><p>Scene and NWI capable wall mounted
|
|||
<property name="vendor">Linear Corp</property>
|
||||
<property name="modelId">WS15Z-1</property>
|
||||
<property name="manufacturerId">014F</property>
|
||||
<property name="manufacturerRef">5257:3533,5753:3535</property>
|
||||
<property name="manufacturerRef">5257:3533</property>
|
||||
<property name="dbReference">4</property>
|
||||
</properties>
|
||||
|
||||
|
@ -61,24 +61,29 @@ Wall Mounted Switch<br /> <h1>Overview</h1><p>Scene and NWI capable wall mounted
|
|||
<!-- PARAMETER DEFINITIONS -->
|
||||
<parameter name="config_3_1" type="integer" groupName="configuration">
|
||||
<label>3: Night Light</label>
|
||||
<description>By default, the LED will turn OFF when the lead attached is turned ON.</description>
|
||||
<default>1</default>
|
||||
<description><![CDATA[
|
||||
By default, the LED will turn OFF when the lead attached is turned ON.<br /> <h1>Overview</h1><p>By default, the LED on the WS15Z-1 will turn OFF when the load attached is turned ON. To make the LED turn ON when the load attached is turned ON, set Parameter 3 to a value of 1.<br /></p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">On when load is on</option>
|
||||
<option value="1">Off when load is on</option>
|
||||
<option value="0">LED OFF when the load is on, and ON when the load is off</option>
|
||||
<option value="1">LED ON when the load is on, and OFF when the load is off</option>
|
||||
<option value="2">LED is always on</option>
|
||||
<option value="3">LED is always off</option>
|
||||
<option value="4">LED blinks during RF transmissions from or to the device</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<parameter name="config_4_1" type="integer" groupName="configuration">
|
||||
<label>4: Invert Switch</label>
|
||||
<description>To change the top of the switch to OFF and the bottom of the switch ON.</description>
|
||||
<description><![CDATA[
|
||||
To change the top of the switch to OFF and the bottom of the switch ON.<br /> <h1>Overview</h1><p>To change the top of the switch to OFF and the bottom of the switch ON, set Parameter 4 to a value of 1.</p>
|
||||
]]></description>
|
||||
<default>0</default>
|
||||
<options>
|
||||
<option value="0">Top-ON, Bottom-OFF</option>
|
||||
<option value="1">Bottom-ON, Top-OFF</option>
|
||||
</options>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
|
|
|
@ -205,6 +205,12 @@ How the switch reports paddle control<br /> <h1>Overview</h1><p>Choose how the s
|
|||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<parameter name="group_2" type="text" groupName="association" multiple="true">
|
||||
<label>2: Group 2</label>
|
||||
<description>Send BASIC SET when operated manually</description>
|
||||
<multipleLimit>5</multipleLimit>
|
||||
</parameter>
|
||||
|
||||
<!-- STATIC DEFINITIONS -->
|
||||
<parameter name="node_id" type="integer" min="1" max="232" readOnly="true" required="true">
|
||||
<label>Node ID</label>
|
||||
|
|
Loading…
Reference in New Issue