Update zigbee-shepherd-converters to 7.1.0.

This commit is contained in:
Koen Kanters
2019-02-02 20:31:55 +01:00
parent 37d516d770
commit 96dcb93859
6 changed files with 35 additions and 5 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

+7 -1
View File
@@ -2,7 +2,7 @@
*NOTE: This file has been generated, do not edit this file manually!*
Currently **192** devices are supported from **39** different vendors.
Currently **193** devices are supported from **40** different vendors.
In case you own a Zigbee device which is **NOT** listed here, please see
[How to support new devices](https://koenkk.github.io/zigbee2mqtt/how_tos/how_to_support_new_devices.html).
@@ -197,6 +197,12 @@ In case you own a Zigbee device which is **NOT** listed here, please see
| ------------- | ------------- | -------------------------- |
| KS-SM001 | Ksentry Electronics [Zigbee OnOff Controller](http://ksentry.manufacturer.globalsources.com/si/6008837134660/pdtl/ZigBee-module/1162731630/zigbee-on-off-controller-modules.htm) (on/off) | ![../images/devices/KS-SM001.jpg](../images/devices/KS-SM001.jpg) |
### Livolo
| Model | Description | Picture |
| ------------- | ------------- | -------------------------- |
| TI0001 | Livolo Zigbee switch (1 and 2 gang) [work in progress](https://github.com/Koenkk/zigbee2mqtt/issues/592) (on/off) | ![../images/devices/TI0001.jpg](../images/devices/TI0001.jpg) |
### Müller Licht
| Model | Description | Picture |
+23
View File
@@ -3326,4 +3326,27 @@ light:
```
{% endraw %}
### TI0001
{% raw %}
```yaml
switch:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
payload_off: "OFF"
payload_on: "ON"
value_template: "{{ value_json.state_left }}"
command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/left/set"
switch:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
payload_off: "OFF"
payload_on: "ON"
value_template: "{{ value_json.state_right }}"
command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/right/set"
```
{% endraw %}