ZigBee2Mqtt - Ikea E1810 Tradfri Remote Control

Blueprint to support the Tradfri Remote Control with ZigBee2Mqtt integration.

Open your Home Assistant instance and show the blueprint import dialog with a specific blueprint pre-filled.

blueprint:
  name: ZigBee2Mqtt - Ikea E1810 Tradfri Remote Control
  description: Control anything using "Ikea E1810 Tradfri Remote Control"
  domain: automation
  input:
    action_sensor:
      name: Remote
      description: Zigbee2mqtt action sensor
      selector:
        entity:
          integration: mqtt
          domain: sensor
    toggle_action:
      name: Toggle Action
      default: []
      selector:
        action: {}
    arrow_right_action:
      name: Arrow Right Action
      default: []
      selector:
        action: {}
    arrow_left_action:
      name: Arrow Left Action
      default: []
      selector:
        action: {}
    brightness_up_action:
      name: Brightness Up Action
      default: []
      selector:
        action: {}
    brightness_down_action:
      name: Brightness Down Action
      default: []
      selector:
        action: {}
mode: restart
max_exceeded: silent
trigger:
  platform: state
  entity_id: !input 'action_sensor'
  attribute: action
action:
- variables:
    command: '{{ trigger.to_state.state }}'
- choose:
  - conditions: '{{ command == ''toggle'' }}'
    sequence: !input 'toggle_action'
  - conditions: '{{ command == ''arrow_right_click'' }}'
    sequence: !input 'arrow_right_action'
  - conditions: '{{ command == ''arrow_left_click'' }}'
    sequence: !input 'arrow_left_action'
  - conditions: '{{ command == ''brightness_up_click'' }}'
    sequence: !input 'brightness_up_action'
  - conditions: '{{ command == ''brightness_down_click'' }}'
    sequence: !input 'brightness_down_action'
1 Like

I updated the blueprint to work with IKEA E1524 (looks the same).
The action of E1524 is not updated into the ‘action’ attribute. Instead we use the primary state of the entity.

Blueprint URL: IKEA E1524 Tradfri Remote Control - Home Assistant Blueprint · GitHub

Open your Home Assistant instance and show the blueprint import dialog with a specific blueprint pre-filled.