131 lines
4.1 KiB
YAML
131 lines
4.1 KiB
YAML
blueprint:
|
|
name: Philips Tap Dial Switch
|
|
description: "Control lights with a Philips Hue Tap Switch.
|
|
Use the four buttons to control up to four light(s) with an on/off toggle. The dial can be used to dim the most recently used light.
|
|
"
|
|
domain: automation
|
|
input:
|
|
remote:
|
|
name: Philips Hue Tap Switch
|
|
selector:
|
|
device:
|
|
integration: zha
|
|
manufacturer: Signify Netherlands B.V.
|
|
model: RDM002
|
|
first_light:
|
|
name: First Light
|
|
description: The light(s) to control with first button
|
|
selector:
|
|
target:
|
|
entity: {}
|
|
second_light:
|
|
name: (OPTIONAL) Second Light
|
|
description: The light(s) to control with second button
|
|
default: {}
|
|
selector:
|
|
target:
|
|
entity: {}
|
|
third_light:
|
|
name: (OPTIONAL) Third Light
|
|
description: The light(s) to control with third button
|
|
default: {}
|
|
selector:
|
|
target:
|
|
entity: {}
|
|
forth_light:
|
|
name: (OPTIONAL) Forth Light
|
|
description: The light(s) to control with forth button
|
|
default: {}
|
|
selector:
|
|
target:
|
|
entity: {}
|
|
current_light:
|
|
name: (OPTIONAL) Current Light
|
|
description: "Text helper to track the current light to dim. Set for the dimmer controls to change which light they are controlling according to the last one turned on."
|
|
default:
|
|
selector:
|
|
entity:
|
|
domain: input_text
|
|
dim_scale:
|
|
name: Diming Scale
|
|
description: Scale factor for the dimming. This value will be multiplied by the value given from the dial. So lower number, more gradual dimming. Larger number, faster dimming.
|
|
default: 1.0
|
|
selector:
|
|
number:
|
|
min: 0.0
|
|
max: 5.0
|
|
step: 0.01
|
|
source_url: https://github.com/xeppaka/ha-automations/blob/main/philips_zigbee_dial.yaml
|
|
mode: restart
|
|
max_exceeded: silent
|
|
|
|
variables:
|
|
first_light: !input "first_light"
|
|
second_light: !input "second_light"
|
|
third_light: !input "third_light"
|
|
forth_light: !input "forth_light"
|
|
dim_scale: !input "dim_scale"
|
|
lights:
|
|
first_light: !input "first_light"
|
|
second_light: !input "second_light"
|
|
third_light: !input "third_light"
|
|
forth_light: !input "forth_light"
|
|
|
|
trigger:
|
|
- platform: event
|
|
event_type: zha_event
|
|
event_data:
|
|
device_id: !input "remote"
|
|
|
|
action:
|
|
- variables:
|
|
command: "{{ trigger.event.data.command }}"
|
|
args: "{{ trigger.event.data.args }}"
|
|
params: "{{ trigger.event.data.params }}"
|
|
scene: "{{ trigger.event.data.params.scene_id }}"
|
|
step_mode: "{{ trigger.event.data.params.step_mode }}"
|
|
step_size: "{{ trigger.event.data.params.step_size }}"
|
|
- choose:
|
|
- conditions:
|
|
- "{{ command == 'recall' }}"
|
|
- "{{ scene == 1 }}"
|
|
sequence:
|
|
- service: homeassistant.toggle
|
|
target: !input "first_light"
|
|
- conditions:
|
|
- "{{ command == 'recall' }}"
|
|
- "{{ second_light != none }}"
|
|
- "{{ scene == 0 }}"
|
|
sequence:
|
|
- service: homeassistant.toggle
|
|
target: !input "second_light"
|
|
# - conditions:
|
|
# - "{{ command == 'recall' }}"
|
|
# - "{{ third_light != none }}"
|
|
# - "{{ scene == 5 }}"
|
|
# sequence:
|
|
# - service: homeassistant.toggle
|
|
# target: !input "third_light"
|
|
# - conditions:
|
|
# - "{{ command == 'recall' }}"
|
|
# - "{{ forth_light != none }}"
|
|
# - "{{ scene == 4 }}"
|
|
- conditions:
|
|
- "{{ command == 'step_with_on_off' }}"
|
|
- "{{ step_mode == 'StepMode.Up' }}"
|
|
sequence:
|
|
- service: light.turn_on
|
|
target: !input "first_light"
|
|
data:
|
|
brightness_step_pct: "{{ step_size * dim_scale }}"
|
|
transition: 1
|
|
- conditions:
|
|
- "{{ command == 'step_with_on_off' }}"
|
|
- "{{ step_mode == 'StepMode.Down' }}"
|
|
sequence:
|
|
- service: light.turn_on
|
|
target: !input "first_light"
|
|
data:
|
|
brightness_step_pct: "{{ -step_size * dim_scale }}"
|
|
transition: 1
|