Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.43 KB

404021.md

File metadata and controls

54 lines (40 loc) · 1.43 KB
title description
Müller Licht 404021 control via MQTT
Integrate your Müller Licht 404021 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

Müller Licht 404021

| Model | 404021 | | Vendor | Müller Licht | | Description | Tint smart switch | | Supports | on/off | | Picture | Müller Licht 404021 |

Notes

Pairing

Press the reset button (or connected switch) 5 times.

External switch

Device only supports momentary switches, not tumble switches.

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 %}