Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.23 KB

81825.md

File metadata and controls

46 lines (35 loc) · 1.23 KB
title description
AduroSmart 81825 control via MQTT
Integrate your AduroSmart 81825 via Zigbee2MQTT with whatever smart home infrastructure you are using without the vendors bridge or gateway.

To contribute to this page, edit the following file

AduroSmart 81825

| Model | 81825 | | Vendor | AduroSmart | | Description | ERIA smart wireless dimming switch | | Supports | on, off, up, down | | Picture | AduroSmart 81825 |

Notes

None

Manual Home Assistant configuration

Although Home Assistant integration through MQTT discovery is preferred, manual integration is possible with the following configuration:

{% raw %}

sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    value_template: "{{ value_json.action }}"
    icon: "mdi:gesture-double-tap"

sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    unit_of_measurement: "lqi"
    value_template: "{{ value_json.linkquality }}"
    icon: "mdi:signal"

{% endraw %}