Skip to content

Latest commit

 

History

History
59 lines (44 loc) · 1.79 KB

E1746.md

File metadata and controls

59 lines (44 loc) · 1.79 KB
title description
IKEA E1746 control via MQTT
Integrate your IKEA E1746 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

IKEA E1746

| Model | E1746 | | Vendor | IKEA | | Description | TRADFRI signal repeater | | Supports | linkquality | | Picture | IKEA E1746 |

Notes

Pairing

Push the reset button of the device with a paperclip for 5 seconds. While pairing the LED is flashing/dimming slowly. Once the pairing is finished, the LED stays on.

Tips for monitoring this device

The device send a payload exactly 1 hours after the first pairing and a payload each exactly 4 hours after. You can track the activity of this device by observing the lastseen value. If now () - lastseen > 4 h, then your equipment has lost its connectivity

OTA updates

This device supports OTA updates, for more information see OTA updates.

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

binary_sensor:
  - platform: "mqtt"
    state_topic: "zigbee2mqtt/<FRIENDLY_NAME>"
    availability_topic: "zigbee2mqtt/bridge/state"
    payload_on: true
    payload_off: false
    value_template: "{{ value_json.update_available}}"

{% endraw %}