#459 Updated to automatically turn off guest mode when we come back home.

This commit is contained in:
ccostan 2019-01-05 19:40:32 -05:00
parent 0d63041dc6
commit b511fba3ea
1 changed files with 26 additions and 0 deletions

View File

@ -23,3 +23,29 @@
call_no_announcement: 1 call_no_announcement: 1
call_garage_check: 1 call_garage_check: 1
call_window_check: 1 call_window_check: 1
- alias: 'Guest Mode Reset'
trigger:
- platform: state
entity_id:
- group.family
from: 'not_home'
to: 'home'
condition:
- condition: state
entity_id: input_boolean.guest_mode
state: 'on'
action:
- service: input_boolean.turn_off
entity_id:
- input_boolean.guest_mode
- service: script.speech_engine
data_template:
value1: >
{{ [
"Guest Mode has been disabled and normal automations will continue."
] | random }}
call_no_announcement: 1