2016-12-23 21:34:51 +00:00
|
|
|
######################################################################################################
|
|
|
|
###Script to shut switches with a 30 second delay to not trample codes
|
2017-01-16 17:14:29 +00:00
|
|
|
### connected to [Etekcity Outlets](http://amzn.to/2efNoBP)
|
|
|
|
## [433Mhz Transmitter and receiver](http://amzn.to/2dceNY2)
|
2016-12-23 21:34:51 +00:00
|
|
|
### Sample Call
|
|
|
|
# action:
|
|
|
|
# - service: script.holiday_switches_on
|
|
|
|
######################################################################################################
|
|
|
|
|
|
|
|
holiday_switches_on:
|
|
|
|
sequence:
|
|
|
|
- service: switch.turn_on
|
|
|
|
entity_id: switch.living_room_outlet
|
|
|
|
- delay: 00:00:30
|
|
|
|
- service: switch.turn_on
|
|
|
|
entity_id: switch.foyer_outlet
|
|
|
|
- delay: 00:00:30
|
2017-01-20 19:42:12 +00:00
|
|
|
- service: switch.turn_on
|
|
|
|
entity_id: switch.front_door_outlet
|
|
|
|
|
2016-12-23 21:34:51 +00:00
|
|
|
- condition: sun
|
|
|
|
after: sunset
|
|
|
|
- service: switch.turn_on
|
|
|
|
entity_id: switch.den_outlet
|
|
|
|
- delay: 00:00:30
|
|
|
|
- service: switch.turn_on
|
|
|
|
entity_id: switch.dining_room_outlet
|
|
|
|
|