Skip to content

Files

Latest commit

cdda156 · Nov 1, 2020

History

History
49 lines (38 loc) · 1.36 KB

LXN59-1S7LX1.0.md

File metadata and controls

49 lines (38 loc) · 1.36 KB
title description
Nue / 3A LXN59-1S7LX1.0 control via MQTT
Integrate your Nue / 3A LXN59-1S7LX1.0 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

Nue / 3A LXN59-1S7LX1.0

| Model | LXN59-1S7LX1.0 | | Vendor | Nue / 3A | | Description | Smart light relay - 1 gang | | Supports | on/off | | Picture | Nue / 3A LXN59-1S7LX1.0 | | White-label | Zemismart ZW-EU-01 |

Notes

None

Manual Home Assistant configuration

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

{% raw %}

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: "lqi"
    value_template: "{{ value_json.linkquality }}"
    icon: "mdi:signal"

{% endraw %}