1
0
ansible-home-assistant/configuration/automations/work.yaml

91 lines
1.7 KiB
YAML

- id: daily
alias: '[Work] Daily notification'
trigger:
- platform: time
at: '8:55'
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: light.turn_on
data:
brightness_pct: 100
rgb_color:
- 0
- 0
- 255
entity_id: light.desk_lightbar_ambilight
- service: light.turn_on
data:
flash: long
brightness_pct: 100
rgb_color:
- 0
- 0
- 255
entity_id: light.desk_lightbar_ambilight
mode: single
- id: daily_off
alias: '[Work] Daily notification off'
trigger:
- platform: time
at: '9:10'
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: light.turn_off
entity_id: light.desk_lightbar_ambilight
mode: single
- id: work_finished
alias: '[Work] Notify when finished work'
trigger:
- platform: time
at: '17:00'
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: vacuum.start
entity_id: vacuum.robot_vacuum
- service: light.turn_on
data:
brightness_pct: 100
rgb_color:
- 0
- 200
- 83
entity_id: light.desk_lightbar_ambilight
- service: light.turn_on
data:
flash: long
brightness_pct: 100
rgb_color:
- 0
- 200
- 83
entity_id: light.desk_lightbar_ambilight
- delay:
minutes: 5
- service: light.turn_off
entity_id: light.desk_lightbar_ambilight
mode: single