2016-12-13 01:18:44 +00:00
|
|
|
######################################################################################################
|
|
|
|
###Script to shut switches with a 30 second delay to not trample codes
|
|
|
|
### Sample Call
|
|
|
|
# action:
|
|
|
|
# - service: script.interior_off
|
|
|
|
######################################################################################################
|
|
|
|
|
|
|
|
interior_off:
|
|
|
|
sequence:
|
|
|
|
- service: light.turn_off
|
|
|
|
entity_id:
|
|
|
|
- group.interior_lights
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.kitchen_accents
|
|
|
|
- delay: '00:00:30'
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.foyer_outlet
|
|
|
|
- delay: '00:00:30'
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.living_room_outlet
|
|
|
|
- delay: '00:00:30'
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.printer
|
|
|
|
- delay: '00:01:00'
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.garage_outlet
|
|
|
|
- delay: '00:01:00'
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.living_room_amp
|
2016-12-13 19:03:34 +00:00
|
|
|
- delay: '00:01:00'
|
|
|
|
- service: switch.turn_off
|
|
|
|
entity_id: switch.dining_room_outlet
|
|
|
|
|
|
|
|
|
2016-12-13 01:18:44 +00:00
|
|
|
|