Update zigbee-shepherd-converters to 7.1.3.

This commit is contained in:
Koen Kanters
2019-02-05 18:26:17 +01:00
parent 0826db07d0
commit 5fc7760db6
8 changed files with 276 additions and 321 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

+9 -1
View File
@@ -2,7 +2,7 @@
*NOTE: This file has been generated, do not edit this file manually!*
Currently **194** devices are supported from **41** different vendors.
Currently **197** devices are supported from **42** 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).
@@ -12,6 +12,7 @@ In case you own a Zigbee device which is **NOT** listed here, please see
| Model | Description | Picture |
| ------------- | ------------- | -------------------------- |
| 81809 | AduroSmart ERIA colors and white shades smart light bulb A19 (on/off, brightness, color temperature, color xy) | ![../images/devices/81809.jpg](../images/devices/81809.jpg) |
| 81825 | AduroSmart ERIA smart wireless dimming switch (on, off, up, down) | ![../images/devices/81825.jpg](../images/devices/81825.jpg) |
### Airam
@@ -123,6 +124,7 @@ In case you own a Zigbee device which is **NOT** listed here, please see
| ------------- | ------------- | -------------------------- |
| HS1SA | HEIMAN Smoke detector (smoke) | ![../images/devices/HS1SA.jpg](../images/devices/HS1SA.jpg) |
| HS3SA | HEIMAN Smoke detector (smoke) | ![../images/devices/HS3SA.jpg](../images/devices/HS3SA.jpg) |
| HS3CG | HEIMAN Combustible gas sensor (gas) | ![../images/devices/HS3CG.jpg](../images/devices/HS3CG.jpg) |
| HS1DS | HEIMAN Door sensor (contact) | ![../images/devices/HS1DS.jpg](../images/devices/HS1DS.jpg) |
| HS1DS-E | HEIMAN Door sensor (contact) | ![../images/devices/HS1DS-E.jpg](../images/devices/HS1DS-E.jpg) |
| HS1WL | HEIMAN Water leakage sensor (water leak) | ![../images/devices/HS1WL.jpg](../images/devices/HS1WL.jpg) |
@@ -228,6 +230,12 @@ In case you own a Zigbee device which is **NOT** listed here, please see
| ------------- | ------------- | -------------------------- |
| Z809A | Netvox Power socket with power consumption monitoring (on/off, power measurement) | ![../images/devices/Z809A.jpg](../images/devices/Z809A.jpg) |
### Ninja Blocks
| Model | Description | Picture |
| ------------- | ------------- | -------------------------- |
| Z809AF | Ninja Blocks Zigbee smart plug with power meter (on/off, power measurement) | ![../images/devices/Z809AF.jpg](../images/devices/Z809AF.jpg) |
### Nue
| Model | Description | Picture |
+49
View File
@@ -2946,6 +2946,28 @@ switch:
```
{% endraw %}
### Z809AF
{% 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 }}"
command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
unit_of_measurement: "Watt"
icon: "mdi:flash"
value_template: "{{ value_json.power }}"
```
{% endraw %}
### 53170161
{% raw %}
```yaml
@@ -3066,6 +3088,20 @@ binary_sensor:
```
{% endraw %}
### HS3CG
{% raw %}
```yaml
binary_sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
payload_on: true
payload_off: false
value_template: "{{ value_json.gas }}"
device_class: "gas"
```
{% endraw %}
### HS1DS
{% raw %}
```yaml
@@ -3318,6 +3354,19 @@ light:
```
{% endraw %}
### 81825
{% raw %}
```yaml
sensor:
- platform: "mqtt"
state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
availability_topic: "zigbee2mqtt/bridge/state"
icon: "mdi:gesture-double-tap"
value_template: "{{ value_json.action }}"
force_update: true
```
{% endraw %}
### SPZB0001
{% raw %}
```yaml