mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-08-28 21:58:28 +00:00
Update zigbee-shepherd-converters to 7.1.3.
This commit is contained in:
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 |
@@ -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) |  |
|
||||
| 81825 | AduroSmart ERIA smart wireless dimming switch (on, off, up, down) |  |
|
||||
|
||||
### Airam
|
||||
|
||||
@@ -123,6 +124,7 @@ In case you own a Zigbee device which is **NOT** listed here, please see
|
||||
| ------------- | ------------- | -------------------------- |
|
||||
| HS1SA | HEIMAN Smoke detector (smoke) |  |
|
||||
| HS3SA | HEIMAN Smoke detector (smoke) |  |
|
||||
| HS3CG | HEIMAN Combustible gas sensor (gas) |  |
|
||||
| HS1DS | HEIMAN Door sensor (contact) |  |
|
||||
| HS1DS-E | HEIMAN Door sensor (contact) |  |
|
||||
| HS1WL | HEIMAN Water leakage sensor (water leak) |  |
|
||||
@@ -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) |  |
|
||||
|
||||
### Ninja Blocks
|
||||
|
||||
| Model | Description | Picture |
|
||||
| ------------- | ------------- | -------------------------- |
|
||||
| Z809AF | Ninja Blocks Zigbee smart plug with power meter (on/off, power measurement) |  |
|
||||
|
||||
### Nue
|
||||
|
||||
| Model | Description | Picture |
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user