mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-21 00:25:12 +00:00
47 lines
1.2 KiB
YAML
Executable File
47 lines
1.2 KiB
YAML
Executable File
###################################
|
|
## 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.dining_room_outlet
|
|
- delay: '00:00:30'
|
|
- service: switch.turn_on
|
|
entity_id: switch.foyer_outlet
|
|
- service: light.turn_on
|
|
entity_id: light.outdoor_bathroom
|
|
|
|
|
|
######################################################################
|
|
|
|
- alias: 'Sunset Stuff off'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunrise
|
|
offset: '-03:25:00'
|
|
|
|
action:
|
|
- service: light.turn_off
|
|
entity_id: group.all_lights
|
|
- service: script.interior_off
|
|
- delay: '00:01:00'
|
|
- service: script.switch_turn_off_all
|
|
|
|
|
|
|
|
|