2016-11-05 23:35:54 +00:00
|
|
|
###################################
|
|
|
|
## Holiday Lights on/off with IFTTT/Alexa support
|
|
|
|
###################################
|
|
|
|
|
|
|
|
- alias: 'Sunset Stuff on'
|
|
|
|
trigger:
|
|
|
|
- platform: sun
|
|
|
|
event: sunset
|
|
|
|
# - platform: event
|
|
|
|
# event_type: halloween_lights_on
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: switch.turn_on
|
2016-11-05 23:55:39 +00:00
|
|
|
entity_id: switch.foyer_outlet
|
2016-11-07 22:57:26 +00:00
|
|
|
- service: light.turn_on
|
|
|
|
data:
|
|
|
|
entity_id: light.outdoor_foyer
|
|
|
|
brightness: 200
|
|
|
|
rgb_color: [61,178,112]
|
2016-11-05 23:35:54 +00:00
|
|
|
|
|
|
|
- alias: 'Sunset Stuff off'
|
|
|
|
trigger:
|
|
|
|
- platform: sun
|
|
|
|
event: sunrise
|
|
|
|
offset: '-03:30:00'
|
|
|
|
# - platform: event
|
|
|
|
# event_type: halloween_lights_off
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: switch.turn_off
|
2016-11-05 23:55:39 +00:00
|
|
|
entity_id: switch.foyer_outlet
|
2016-11-07 22:57:26 +00:00
|
|
|
- service: light.turn_off
|
|
|
|
entity_id: light.outdoor_foyer
|
2016-11-05 23:35:54 +00:00
|
|
|
|