2016-11-05 23:35:54 +00:00
|
|
|
###################################
|
2016-11-09 06:48:10 +00:00
|
|
|
## Sunrise and Sunset stuff
|
2016-11-05 23:35:54 +00:00
|
|
|
###################################
|
|
|
|
|
|
|
|
- alias: 'Sunset Stuff on'
|
|
|
|
trigger:
|
|
|
|
- platform: sun
|
|
|
|
event: sunset
|
|
|
|
|
|
|
|
action:
|
|
|
|
- service: switch.turn_on
|
2016-11-05 23:55:39 +00:00
|
|
|
entity_id: switch.foyer_outlet
|
2016-11-09 06:48:10 +00:00
|
|
|
- service: light.turn_on
|
2016-11-21 23:21:06 +00:00
|
|
|
entity_id: light.outdoor_bathroom
|
2016-12-01 06:28:20 +00:00
|
|
|
- service: scene.turn_on
|
|
|
|
entity_id: scene.december_front
|
2016-11-24 01:16:05 +00:00
|
|
|
######################################################################
|
|
|
|
|
2016-11-05 23:35:54 +00:00
|
|
|
- alias: 'Sunset Stuff off'
|
|
|
|
trigger:
|
|
|
|
- platform: sun
|
|
|
|
event: sunrise
|
2016-12-02 02:58:27 +00:00
|
|
|
offset: '-03:30:00'
|
2016-11-05 23:35:54 +00:00
|
|
|
|
|
|
|
action:
|
2016-11-07 22:57:26 +00:00
|
|
|
- service: light.turn_off
|
2016-12-02 02:58:27 +00:00
|
|
|
entity_id: group.all_lights
|
2016-11-20 01:50:56 +00:00
|
|
|
data:
|
2016-12-02 02:58:27 +00:00
|
|
|
transition: 1200
|
2016-12-01 06:28:20 +00:00
|
|
|
- service: script.switch_turn_off_all
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-11-20 20:02:58 +00:00
|
|
|
|