Deconz IKEA Tradfri Wireless Dimmer

This is a blueprint for the IKEA Tradfri Wireless Remote, specifically for use with deCONZ.

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

The dimmer can rotate clockwise (up) and anotclockwise (down). These rotations can be used to control anything, but typically would be used to control the brightness of a light.

Blueprint, which you can import by using this forum topic URL:

blueprint:
  name: deConz - IKEA wireless dimmer
  description: Control anything using IKEA wireless dimmer
  domain: automation
  input:
    remote:
      name: switch
      description: IKEA wireless dimmer to use
      selector:
        device:
          integration: deconz
          manufacturer: IKEA of Sweden
          model: TRADFRI wireless dimmer
    dimmer_down:
      name: On dimmer rotated anticlockwise
      description: Action to run on press of dimmer turned anticlockwise
      default: []
      selector:
        action: {}
    dimmer_up:
      name: On dimmer rotated clockwise
      description: Action to run on press of dimmer turned clockwise
      default: []
      selector:
        action: {}
  source_url: https://koala.ie
mode: restart
max_exceeded: silent
trigger:
- platform: event
  event_type: deconz_event
  event_data:
    device_id: !input 'remote'
action:
- variables:
    event: '{{ trigger.event.data.event }}'
- choose:
  - conditions:
    - '{{ event == 3002 }}'
    sequence: !input 'dimmer_down'
  - conditions:
    - '{{ event == 2002 }}'
    sequence: !input 'dimmer_up'
2 Likes

Any method to use this with ZHA? I’ve noticed this is the only version of this posted and I have 3 of these which I ordered by accident (wanted the 5-button version that I already have). So was hoping that an automation worked so I didn’t need to figure it out on my own.

Im wondering the same thing as Gamerayers. I was also wanting to use this Blueprint with ZHA. I tried reconfiguring it myself but no luck.