1
0
ansible-home-assistant/configuration/automations/bedroom-button.yaml

87 lines
2.1 KiB
YAML

# Single click
- id: bedroom-button-turn-on
alias: '[Bedroom] Button Turn On'
trigger:
- device_id: 15b083b6b5e2acb5d37fbbfbfc76281f
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
action:
- service: script.bedroom_lights_on
mode: single
- id: bedroom-button-turn-off
alias: '[Bedroom] Button Turn Off'
trigger:
- device_id: 15b083b6b5e2acb5d37fbbfbfc76281f
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_off
action:
- service: script.bedroom_all_lights_off
mode: single
- id: bedroom-button-dim-up
alias: '[Bedroom] Button Dim Up'
trigger:
- device_id: 15b083b6b5e2acb5d37fbbfbfc76281f
domain: zha
platform: device
type: remote_button_short_press
subtype: dim_up
action:
- service: light.turn_on
data:
brightness_step_pct: 10
entity_id: light.bedroom_lights
mode: single
- id: bedroom-button-dim-down
alias: '[Bedroom] Button Dim Down'
trigger:
- device_id: 15b083b6b5e2acb5d37fbbfbfc76281f
domain: zha
platform: device
type: remote_button_short_press
subtype: dim_down
action:
- service: light.turn_on
data:
brightness_step_pct: -10
entity_id: light.bedroom_lights
mode: single
# Double click
- id: bedroom-button-dim-up-double
alias: '[Bedroom] Button Dim Up Double'
trigger:
- device_id: 15b083b6b5e2acb5d37fbbfbfc76281f
domain: zha
platform: device
type: remote_button_double_press
subtype: dim_up
action:
- service: light.turn_on
data:
brightness_pct: 90
kelvin: 3200
entity_id: light.bedroom_lights
mode: single
- id: bedroom-button-dim-down-double
alias: '[Bedroom] Button Dim Up'
trigger:
- device_id: 15b083b6b5e2acb5d37fbbfbfc76281f
domain: zha
platform: device
type: remote_button_double_press
subtype: dim_down
action:
- service: light.turn_on
data:
brightness_pct: 10
kelvin: 2000
entity_id: light.bedroom_lights
mode: single