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

95 lines
3.0 KiB
YAML
Raw Normal View History

2021-10-11 18:15:50 +00:00
- id: button-office-table
alias: '[Office] Button Light'
2020-12-06 19:47:20 +00:00
trigger:
- device_id: 5b972523e427721ec88e095994f7cc16
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_on
action:
- choose:
- conditions:
- condition: state
2021-07-15 20:10:55 +00:00
entity_id: light.table_lamp
state: 'on'
sequence:
2021-07-02 23:03:37 +00:00
- service: light.turn_off
2021-07-15 20:10:55 +00:00
entity_id: light.table_lamp
- conditions:
- condition: state
2021-07-15 20:10:55 +00:00
entity_id: light.table_lamp
state: 'off'
sequence:
2021-07-02 23:03:37 +00:00
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
2021-07-15 20:10:55 +00:00
entity_id: light.table_lamp
2021-07-02 23:03:37 +00:00
data:
brightness_pct: 100
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
2021-07-15 20:10:55 +00:00
entity_id: light.table_lamp
2021-07-02 23:03:37 +00:00
data:
brightness_pct: 100
kelvin: 3200
2020-12-06 19:47:20 +00:00
mode: single
2021-05-10 10:24:31 +00:00
2021-10-11 18:15:50 +00:00
- id: button-office-desk
alias: '[Office] Button Desk'
2020-12-06 19:47:20 +00:00
trigger:
- device_id: 5b972523e427721ec88e095994f7cc16
domain: zha
platform: device
type: remote_button_short_press
subtype: turn_off
action:
- service: light.turn_off
data:
2021-05-06 23:04:02 +00:00
entity_id: light.desk_lightbar
- choose:
- conditions:
- condition: state
2021-07-02 23:03:37 +00:00
entity_id: light.desk_lightbar
state: 'on'
sequence:
2021-07-02 23:03:37 +00:00
- service: light.turn_off
entity_id: light.desk_lightbar
- service: light.turn_off
entity_id: light.desk_lightbar_ambilight
- conditions:
- condition: state
2021-07-02 23:03:37 +00:00
entity_id: light.desk_lightbar
state: 'off'
sequence:
2021-07-02 23:03:37 +00:00
- choose:
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'on'
sequence:
- service: light.turn_on
entity_id: light.desk_lightbar
data:
brightness_pct: 100
kelvin: 2000
- conditions:
- condition: state
entity_id: input_boolean.sleep_mode
state: 'off'
sequence:
- service: light.turn_on
entity_id: light.desk_lightbar
data:
brightness_pct: 100
kelvin: 3200
2020-12-06 19:47:20 +00:00
mode: single