Skip to content

Latest commit

 

History

History
75 lines (59 loc) · 2.21 KB

43080.md

File metadata and controls

75 lines (59 loc) · 2.21 KB
title description
Enbrighten 43080 control via MQTT
Integrate your Enbrighten 43080 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

Enbrighten 43080

| Model | 43080 | | Vendor | Enbrighten | | Description | Zigbee in-wall smart dimmer | | Supports | on/off, brightness | | Picture | Enbrighten 43080 |

Notes

LED status indicator

To change the LED status indicator press the top of rocker 3 times and then the bottom of the rocker 1 time. This will cycle between these modes:

  1. LED is ON when the load if OFF (Default)
  2. LED is ON when the load if ON
  3. LED is always OFF

Pairing

Factory reset the dimmer by pressing the top of the rocker 10 times quickly.

Device type specific configuration

How to use device type specific configuration

  • transition: Controls the transition time (in seconds) of on/off, brightness, color temperature (if applicable) and color (if applicable) changes. Defaults to 0 (no transition). Note that this value is overridden if a transition value is present in the MQTT command payload.

Manual Home Assistant configuration

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

{% raw %}

light:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    brightness: true
    color_temp: false
    xy: false
    hs: false
    schema: "json"
    command_topic: "zigbee2mqtt/<FRIENDLY_NAME>/set"
    brightness_scale: 254
    effect: true
    effect_list: 
      - "blink"
      - "breathe"
      - "okay"
      - "channel_change"
      - "finish_effect"
      - "stop_effect"

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