Last active
October 13, 2024 11:20
-
-
Save CrazyCoder/28d660d9e2e8464458e591ad79b3698e to your computer and use it in GitHub Desktop.
Philips Hue Dimmer switch v2 (Zigbee2MQTT)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Philips Hue Dimmer switch v2 (Zigbee2MQTT) | |
description: | |
"Tested with Philips Hue Smart Wireless Dimmer Switch V2 (929002398602). | |
\n\n | |
To have different actions on short press and on hold (long press), use 'button release' (`*_press_release`) and 'button hold once' (`*_hold_once`) commands, | |
as 'press' (`*_press`) will always trigger before 'button hold' (`*_hold`). | |
\n\n | |
When you hold a button, 'button hold' (`*_hold`) command is repeated roughly once per second. This may not work as desired with actions like toggling light/switch. | |
If you want an action to run only once when the button hold action is registered, use 'button hold once' (`*_hold_once`). It's better than using 'button hold release' | |
as the result can be observed before releasing the button after holding. | |
\n\n | |
As 'button hold' action is repeated by the device while you keep holding the button, it's a good way to run actions which increment / decrement some value (such as light dimming). | |
To make it react as soon as the button is pressed, copy the same action to 'button press' (press action occurs immediately, while hold action occurs after a delay). | |
\n\n | |
Make sure to manually create a separate Text Helper per dimmer device and define its entity in the automation. It's used to store the last controller event to filter possible | |
empty events and handle 'button hold once' actions. | |
" | |
domain: automation | |
input: | |
action_sensor: | |
name: Action Sensor | |
description: Zigbee2mqtt Hue Dimmer action | |
selector: | |
entity: | |
integration: mqtt | |
domain: sensor | |
multiple: false | |
helper_last_controller_event: | |
name: (Required) Helper - Last Controller Event | |
description: | |
Input Text used to store the last event fired by the controller. | |
You will need to manually create a text input Helper entity for this. | |
default: "" | |
selector: | |
entity: | |
domain: input_text | |
multiple: false | |
on_press: | |
name: ON button press | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
on_press_release: | |
name: ON button release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
on_hold: | |
name: ON button hold | |
description: Action to run (repeat while holding) | |
default: [] | |
selector: | |
action: {} | |
on_hold_once: | |
name: ON button hold once | |
description: Action to run only once (no repeat) | |
default: [] | |
selector: | |
action: {} | |
on_hold_release: | |
name: ON button hold release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
up_press: | |
name: UP button press | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
up_press_release: | |
name: UP button release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
up_hold: | |
name: UP button hold | |
description: Action to run (repeat while holding) | |
default: [] | |
selector: | |
action: {} | |
up_hold_once: | |
name: UP button hold once | |
description: Action to run only once (no repeat) | |
default: [] | |
selector: | |
action: {} | |
up_hold_release: | |
name: UP button hold release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
down_press: | |
name: DOWN button press | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
down_press_release: | |
name: DOWN button release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
down_hold: | |
name: DOWN button hold | |
description: Action to run (repeat while holding) | |
default: [] | |
selector: | |
action: {} | |
down_hold_once: | |
name: DOWN button hold once | |
description: Action to run only once (no repeat) | |
default: [] | |
selector: | |
action: {} | |
down_hold_release: | |
name: DOWN button hold release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
off_press: | |
name: OFF/HUE button press | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
off_press_release: | |
name: OFF/HUE button release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
off_hold: | |
name: OFF/HUE button hold | |
description: Action to run (repeat while holding) | |
default: [] | |
selector: | |
action: {} | |
off_hold_once: | |
name: OFF/HUE button hold once | |
description: Action to run only once (no repeat) | |
default: [] | |
selector: | |
action: {} | |
off_hold_release: | |
name: OFF/HUE button hold release | |
description: Action to run | |
default: [] | |
selector: | |
action: {} | |
source_url: "https://gist.github.com/CrazyCoder/28d660d9e2e8464458e591ad79b3698e" | |
mode: restart | |
max_exceeded: silent | |
trigger: | |
- platform: event | |
event_type: state_changed | |
event_data: | |
entity_id: !input action_sensor | |
condition: | |
- condition: template | |
value_template: '{{ trigger.event.data.new_state.state not in ("", "None", "unknown") }}' | |
action: | |
- variables: | |
helper_last_controller_event: !input helper_last_controller_event | |
command: "{{ trigger.event.data.new_state.state }}" | |
prev_command: "{{ states(helper_last_controller_event) }}" | |
# - service: logbook.log | |
# data: | |
# name: "command: " | |
# message: > | |
# {{ command }} - {{ prev_command }} | |
- service: input_text.set_value | |
data: | |
entity_id: !input helper_last_controller_event | |
value: "{{ command }}" | |
- choose: | |
- conditions: | |
- '{{ command == "on_press" }}' | |
sequence: !input on_press | |
- conditions: | |
- '{{ command == "on_press_release" }}' | |
sequence: !input on_press_release | |
- conditions: | |
- '{{ command == "on_hold" }}' | |
sequence: !input on_hold | |
- conditions: | |
- '{{ command == "on_hold_release" }}' | |
sequence: !input on_hold_release | |
- conditions: | |
- '{{ command == "up_press" }}' | |
sequence: !input up_press | |
- conditions: | |
- '{{ command == "up_press_release" }}' | |
sequence: !input up_press_release | |
- conditions: | |
- '{{ command == "up_hold" }}' | |
sequence: !input up_hold | |
- conditions: | |
- '{{ command == "up_hold_release" }}' | |
sequence: !input up_hold_release | |
- conditions: | |
- '{{ command == "down_press" }}' | |
sequence: !input down_press | |
- conditions: | |
- '{{ command == "down_press_release" }}' | |
sequence: !input down_press_release | |
- conditions: | |
- '{{ command == "down_hold" }}' | |
sequence: !input down_hold | |
- conditions: | |
- '{{ command == "down_hold_release" }}' | |
sequence: !input down_hold_release | |
- conditions: | |
- '{{ command == "off_press" }}' | |
sequence: !input off_press | |
- conditions: | |
- '{{ command == "off_press_release" }}' | |
sequence: !input off_press_release | |
- conditions: | |
- '{{ command == "off_hold" }}' | |
sequence: !input off_hold | |
- conditions: | |
- '{{ command == "off_hold_release" }}' | |
sequence: !input off_hold_release | |
- choose: | |
- conditions: | |
- '{{ command == "on_hold" and prev_command == "on_press" }}' | |
sequence: !input on_hold_once | |
- conditions: | |
- '{{ command == "up_hold" and prev_command == "up_press" }}' | |
sequence: !input up_hold_once | |
- conditions: | |
- '{{ command == "down_hold" and prev_command == "down_press" }}' | |
sequence: !input down_hold_once | |
- conditions: | |
- '{{ command == "off_hold" and prev_command == "off_press" }}' | |
sequence: !input off_hold_once |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment