Skip to content

Instantly share code, notes, and snippets.

@husnainali09
Created August 6, 2022 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save husnainali09/b64e6055d6b7fe787b70841e35af9bc8 to your computer and use it in GitHub Desktop.
Save husnainali09/b64e6055d6b7fe787b70841e35af9bc8 to your computer and use it in GitHub Desktop.
Zigbee2MQTT - Phillips Hue Dimmer 324131137411
blueprint:
name: Phillips Dimmer - 324131137411 Legacy FALSE Hue Dimmer
description: 'Use the individual buttons of the Hue Dimmer Switch to control an action by either a click or a long press.
'
domain: automation
input:
dimmer:
name: Hue Dimmer switch
description: Hue Dimmer switch to use (Zigbee2mqtt Action Sensor)
selector:
entity:
domain: sensor
button_1:
name: On Button - single click
description: Action to run on click of On button
default: []
selector:
action: {}
button_2:
name: Dim Up Button - single click
description: Action to run on click of Dim Up button
default: []
selector:
action: {}
button_3:
name: Dim Down Button - single click
description: Action to run on click of Dim Down button
default: []
selector:
action: {}
button_4:
name: Off Button - single click
description: Action to run on click of Off button
default: []
selector:
action: {}
button_5:
name: On Button - long press
description: Action to run on long press of On button
default: []
selector:
action: {}
button_6:
name: Dim Up Button - long press
description: Action to run on long press of Dim Up button
default: []
selector:
action: {}
button_7:
name: Dim Down Button - long press
description: Action to run on long press of Dim Down button
default: []
selector:
action: {}
button_8:
name: Off Button - long press
description: Action to run on long press of Off button
default: []
selector:
action: {}
mode: restart
max_exceeded: silent
trigger:
- platform: state
entity_id: !input 'dimmer'
attribute: action
action:
- variables:
command: '{{ trigger.to_state.state }}'
- choose:
- conditions:
- '{{ command == ''on_press_release'' }}'
sequence: !input button_1
- conditions:
- '{{ command == ''up_press_release'' }}'
sequence: !input button_2
- conditions:
- '{{ command == ''down_press_release'' }}'
sequence: !input button_3
- conditions:
- '{{ command == ''off_press_release'' }}'
sequence: !input button_4
- conditions:
- '{{ command == ''on_hold_release'' }}'
sequence: !input button_5
- conditions:
- '{{ command == ''up_hold_release'' }}'
sequence: !input button_6
- conditions:
- '{{ command == ''down_hold_release'' }}'
sequence: !input button_7
- conditions:
- '{{ command == ''off_hold_release'' }}'
sequence: !input button_8
@hanfreakingsolo
Copy link

Great automation, just recommend removing the 'attribute' field under trigger platform, as the attribute is already selector by the sensor entity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment