Home-AssistantConfig/automation/sunrise_turnon_and_off.yaml

42 lines
1.0 KiB
YAML
Raw Normal View History

###################################
## Sunrise and Sunset stuff
###################################
- alias: 'Sunset Stuff on'
trigger:
- platform: sun
event: sunset
action:
- service: script.monthly_front_house_scene
- service: switch.turn_on
entity_id: switch.living_room_outlet
- delay: '00:00:30'
- service: switch.turn_on
entity_id: switch.den_outlet
- delay: '00:00:30'
- service: switch.turn_on
entity_id: switch.living_room_outlet
- delay: '00:00:30'
- service: switch.turn_on
entity_id: switch.foyer_outlet
- service: light.turn_on
2016-11-21 23:21:06 +00:00
entity_id: light.outdoor_bathroom
2016-11-24 01:16:05 +00:00
######################################################################
- alias: 'Sunset Stuff off'
trigger:
- platform: sun
event: sunrise
offset: '-03:30:00'
action:
2016-11-07 22:57:26 +00:00
- service: light.turn_off
entity_id: group.all_lights
- service: script.switch_turn_off_all