2017-01-06 01:37:28 +00:00
|
|
|
###################################
|
|
|
|
## Holiday Lights on/off with IFTTT/Alexa support
|
2017-01-16 17:14:29 +00:00
|
|
|
## [Etekcity Outlets](http://amzn.to/2efNoBP)
|
|
|
|
## [433Mhz Transmitter and receiver](http://amzn.to/2dceNY2)
|
2017-01-06 01:37:28 +00:00
|
|
|
###################################
|
|
|
|
|
|
|
|
- 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
|
2017-01-06 01:45:47 +00:00
|
|
|
#offset: '-0{{ (range(1, 3)|random|int) }}:{{ (range(1, 59)|random|int) }}:00'
|
2017-01-06 01:37:28 +00:00
|
|
|
- platform: event
|
|
|
|
event_type: holiday_lights_off
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: script.switch_turn_off_all
|
|
|
|
|
2016-10-19 17:38:48 +00:00
|
|
|
|