šŸŽ® ZHA, deCONZ, Zigbee2MQTT - Ikea E1744 SYMFONISK rotary remote Universal blueprint - all actions - control lights, media players and more with Hooks

I suggest looking at Switch Manager. It works with the IKEA devices including this rotary one.

@rpuls

2 Likes

Thanks so much for the tip.

Woah that integration is amazing!! Setup the sound remote and it works perfectly.

Just wish I had known about this one before manually creating automations for each of my 30 or so Friends of Hue Lightswitches, Hue Dimmer Switches and Ikea Buttons over the past couple of daysā€¦

How did you install the integration? Iā€™m trying via HACS, but Iā€™m getting an errorā€¦

:thinking:

Just went into HACS and clicked install. No issues. I am using the Home Assistant OS install. Are you sure you got the correct integration selected?

Or do you have some ā€œexoticā€ installation of HA?

Yes Iā€™m using standard HA, nothing exitic. and latest versionā€¦

When I click the ā€œadd integrationā€ Iā€™m taken to this URL: Link to Integrations: add integration ā€“ My Home Assistant

Can you confirm that this is the correct integration?

Hello @n00bish , @drsound & HA fans,

I experiment with HA since about a year (considering myself newbie).
I get a Docker install of HA.

I created a ikea_e1744.yaml file located at /home/[USER]/hass-config/blueprints/automation/homeassistant/ using

~$ sudo nano /home/[USER]/hass-config/blueprints/automation/homeassistant/ikea_e1744.yaml

and pasted there the content from @drsound since I understand it was never merged.

I reloaded config using
Developper Tools > YAML > All Yaml Configuration
(Tried Developper Tools > YAML > Automations as well)

However the blueprint does not appear magically in the blueprint listā€¦

Any idea why?

Hey @LeoG . Do you not have the ā€œimport blueprintā€ button on the docker instance of HA?

If you do, then click it, and paste it the url: https://raw.githubusercontent.com/EPMatt/awesome-ha-blueprints/157f8964a777ac5ae4acd108c7cc7766256fe44f/blueprints/controllers/ikea_e1744/ikea_e1744.yaml

This is the link @drsound posted ealier. It worked perfectly for me :slight_smile:

I have this remote working fine in both HA and Node red.
Not sure what the issue is.
Although I recommend getting the new that is not spinning. That is a far much better remote. The only downside of that remote is that itā€™s all white and itā€™s really hard to see what button is what.

Anyways, the old remote. Here is my automation for that remote

alias: David IKEA remote
description: ""
trigger:
  - platform: event
    event_type: zha_event
    event_data:
      device_id: 3d00470f1ec47548299d3ba0d5bb5ea1
      command: move
      args:
        - 0
        - 195
        - 0
        - 0
    id: vol_up
  - platform: event
    event_type: zha_event
    event_data:
      device_id: 3d00470f1ec47548299d3ba0d5bb5ea1
      command: move
      args:
        - 1
        - 195
        - 0
        - 0
    id: vol_down
  - platform: event
    event_type: zha_event
    event_data:
      device_id: 3d00470f1ec47548299d3ba0d5bb5ea1
      command: toggle
    id: click
  - platform: event
    event_type: zha_event
    event_data:
      device_id: 3d00470f1ec47548299d3ba0d5bb5ea1
      command: step
      args:
        - 0
        - 1
        - 0
        - 0
        - 0
    id: dbclick
  - platform: event
    event_type: zha_event
    event_data:
      device_id: 3d00470f1ec47548299d3ba0d5bb5ea1
      command: step
      args:
        - 1
        - 1
        - 0
        - 0
        - 0
    id: triclick
    enabled: false
condition: []
action:
  - choose:
      - conditions:
          - condition: trigger
            id: vol_up
        sequence:
          - service: button.press
            data: {}
            target:
              entity_id: button.david_lg_tv_volume_up
  - choose:
      - conditions:
          - condition: trigger
            id: vol_down
        sequence:
          - service: button.press
            data: {}
            target:
              entity_id: button.david_lg_tv_volume_down
  - choose:
      - conditions:
          - condition: trigger
            id: click
        sequence:
          - service: media_player.media_play_pause
            data: {}
            target:
              entity_id: media_player.chromecast5039
  - choose:
      - conditions:
          - condition: trigger
            id: dbclick
          - condition: state
            entity_id: binary_sensor.david_tv_on_off
            state: "on"
        sequence:
          - service: media_player.turn_off
            data: {}
            target:
              entity_id: media_player.playstation_4
          - delay:
              hours: 0
              minutes: 0
              seconds: 2
              milliseconds: 0
          - service: button.press
            data: {}
            target:
              entity_id: button.david_lg_tv_on_off
            enabled: false
mode: single