You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
603 B
27 lines
603 B
###################################
|
|
## Holiday Lights on/off with IFTTT/Alexa support
|
|
###################################
|
|
|
|
- alias: 'Holiday Stuff on'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunset
|
|
- platform: event
|
|
event_type: holiday_lights_on
|
|
|
|
action:
|
|
- service: script.holiday_switches_on
|
|
|
|
|
|
- alias: 'Holiday Stuff off'
|
|
trigger:
|
|
- platform: sun
|
|
event: sunrise
|
|
offset: '-03:30:00'
|
|
- platform: event
|
|
event_type: holiday_lights_off
|
|
|
|
action:
|
|
- service: script.switch_turn_off_all
|
|
|
|
|