2016-10-19 17:47:13 +00:00
|
|
|
###################################
|
|
|
|
## Holiday Lights on/off with IFTTT/Alexa support
|
|
|
|
###################################
|
|
|
|
|
2016-10-19 17:38:48 +00:00
|
|
|
- alias: 'Holiday Stuff on'
|
|
|
|
trigger:
|
|
|
|
- platform: sun
|
|
|
|
event: sunset
|
|
|
|
- platform: event
|
|
|
|
event_type: halloween_lights_on
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: switch.turn_on
|
2016-10-19 21:48:00 +00:00
|
|
|
entity_id: group.holiday
|
2016-10-19 17:38:48 +00:00
|
|
|
|
|
|
|
- alias: 'Holiday Stuff off'
|
|
|
|
trigger:
|
|
|
|
- platform: sun
|
|
|
|
event: sunrise
|
|
|
|
offset: '-03:00:00'
|
|
|
|
- platform: event
|
|
|
|
event_type: halloween_lights_off
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: switch.turn_on
|
2016-10-19 21:48:00 +00:00
|
|
|
entity_id: group.holiday
|
2016-10-19 17:38:48 +00:00
|
|
|
|