Skip to content

Files

Latest commit

cdda156 · Nov 1, 2020

History

History
87 lines (64 loc) · 2.71 KB

6ARCZABZH.md

File metadata and controls

87 lines (64 loc) · 2.71 KB
title description
Leedarson 6ARCZABZH control via MQTT
Integrate your Leedarson 6ARCZABZH 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

Leedarson 6ARCZABZH

| Model | 6ARCZABZH | | Vendor | Leedarson | | Description | 4-Key Remote Controller | | Supports | on/off, brightness up/down and click/hold/release, cct | | Picture | Leedarson 6ARCZABZH |

Notes

Deprecated click event

By default this device exposes a deprecated click event. It's recommended to use the action event instead.

To disable the click event, set legacy: false for this device in configuration.yaml. Example:

devices:
  '0x12345678':
    friendly_name: my_device
    legacy: false

Device type specific configuration

How to use device type specific configuration

  • legacy: Set to true to disable the legacy integration (highly recommended!)

  • simulated_brightness: Set to true to simulate a brightness value (default: false). If this device provides a brightness_move_up or brightness_move_down action it is possible to specify the update interval and delta. This can be done by instead of specifying true:

simulated_brightness:
  delta: 20 # delta per interval, default = 20
  interval: 200 # interval in milliseconds, default = 200
  • 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 %}

sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    unit_of_measurement: "%"
    value_template: "{{ value_json.battery }}"
    device_class: "battery"

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