mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-19 07:47:27 +00:00
34 lines
814 B
YAML
Executable File
34 lines
814 B
YAML
Executable File
###################################
|
|
## Sunrise and Sunset stuff
|
|
###################################
|
|
|
|
- alias: 'Sunset Stuff on'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunset
|
|
|
|
action:
|
|
- service: switch.turn_on
|
|
entity_id: switch.foyer_outlet
|
|
- service: light.turn_on
|
|
entity_id: light.outdoor_bathroom
|
|
- service: scene.turn_on
|
|
entity_id: scene.december_front
|
|
######################################################################
|
|
|
|
- alias: 'Sunset Stuff off'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunrise
|
|
offset: '-03:30:00'
|
|
|
|
action:
|
|
- service: light.turn_off
|
|
entity_id: group.all_lights
|
|
data:
|
|
transition: 1200
|
|
- service: script.switch_turn_off_all
|
|
|
|
|
|
|
|
|