Skip to content

Instantly share code, notes, and snippets.

@EuleMitKeule
Created August 7, 2021 20:24
Show Gist options
  • Save EuleMitKeule/2835e9d113004ca6c08c3b07045d43f5 to your computer and use it in GitHub Desktop.
Save EuleMitKeule/2835e9d113004ca6c08c3b07045d43f5 to your computer and use it in GitHub Desktop.
blueprint:
name: deCONZ - Tradfri Shortcut Button
description: 'Control anything using Tradfri Shortcut Button remote'
domain: automation
input:
remote:
name: Remote
description: Tradfri Shortcut Button to use
selector:
device:
integration: deconz
manufacturer: IKEA of Sweden
model: TRADFRI SHORTCUT Button
button_short:
name: Button short press
description: Action to run on press button
default: []
selector:
action: {}
button_long:
name: Button long press
description: Action to run on hold button
default: []
selector:
action: {}
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 == 1002 }}'
sequence: !input 'button_short'
- conditions:
- '{{ event == 1001 }}'
sequence: !input 'button_long'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment