Files
sarah/automation/guest_mode.yaml
T
2020-03-05 01:23:16 +02:00

30 lines
745 B
YAML

- id: enable_guest_mode
alias: Guest Mode - Enable
trigger:
platform: state
entity_id: input_boolean.guest_mode
from: "off"
to: "on"
action:
- service: automation.turn_off
entity_id:
- automation.leaving_home
- automation.coming_home
- service: input_boolean.turn_off
entity_id: input_boolean.speech_notifications
- id: disable_guest_mode
alias: Guest Mode - Disable
trigger:
platform: state
entity_id: input_boolean.guest_mode
from: "on"
to: "off"
action:
- service: automation.turn_on
entity_id:
- automation.leaving_home
- automation.coming_home
- service: input_boolean.turn_on
entity_id: input_boolean.speech_notifications