mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-02-19 07:47:27 +00:00
34 lines
848 B
YAML
Executable File
34 lines
848 B
YAML
Executable File
###################################
|
|
## Holiday Lights on/off with IFTTT/Alexa support
|
|
###################################
|
|
|
|
- alias: 'Holiday Stuff on'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunset
|
|
- platform: event
|
|
event_type: halloween_lights_on
|
|
|
|
action:
|
|
- service: switch.turn_on
|
|
entity_id: switch.outlet_den
|
|
- delay: 00:00:30
|
|
- service: switch.turn_on
|
|
entity_id: switch.outlet_living_room
|
|
|
|
- alias: 'Holiday Stuff off'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunrise
|
|
offset: '-03:30:00'
|
|
- platform: event
|
|
event_type: halloween_lights_off
|
|
|
|
action:
|
|
- service: switch.turn_off
|
|
entity_id: switch.outlet_den
|
|
- delay: 00:00:30
|
|
- service: switch.turn_off
|
|
entity_id: switch.outlet_living_room
|
|
|
|
|