Skip to content

Files

Latest commit

cdda156 · Nov 1, 2020

History

History
71 lines (54 loc) · 2.52 KB

ROB_200-007-0.md

File metadata and controls

71 lines (54 loc) · 2.52 KB
title description
ROBB ROB_200-007-0 control via MQTT
Integrate your ROBB ROB_200-007-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

ROBB ROB_200-007-0

| Model | ROB_200-007-0 | | Vendor | ROBB | | Description | Zigbee 8 button wall switch | | Supports | action | | Picture | ROBB ROB_200-007-0 | | White-label | Sunricher SR-ZG9001K8-DIM |

Notes

Pairing

First reset. Press and hold the upper two buttons for 5 seconds untill led lights up (contiunously blue or green). Then press the upper "0" 5 times - depending on the model, or in a pace of 2 times per second or in a pace of 5 times per second. Second pair. Press and hold the upper two buttons for 5 seconds again, untill the led turns on. Then press the "0" once. It should now enter pair mode an start blinking - if it does not get connected, just try the second step again.

Device type specific configuration

How to use device type specific configuration

  • 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

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