Home-AssistantConfig/config/automation/guard_dog.yaml

32 lines
1.0 KiB
YAML
Raw Normal View History

2018-01-02 00:00:45 +00:00
######################################################################
## Speak Max! Speak Max!!
######################################################################
# Define an alias for this automation
2018-01-02 00:00:45 +00:00
- alias: Guard Dog
# Give the automation a unique ID
2020-07-20 18:33:03 +00:00
id: 4e785061-1157-4b8d-8d48-3a74904f8e54
# Set the triggers for the automation
2018-01-02 00:00:45 +00:00
trigger:
# The automation will be triggered when the state of the "input_boolean.guard_dog" entity changes from "off" to "on"
2018-01-02 00:00:45 +00:00
- platform: state
entity_id: input_boolean.guard_dog
to: 'on'
from: 'off'
# The automation will also be triggered when the state of the "binary_sensor.front_door_opened" entity changes from "off" to "on"
2018-01-02 00:00:45 +00:00
- platform: state
entity_id: binary_sensor.front_door_opened
to: 'on'
from: 'off'
condition:
- condition: state
entity_id: group.garage_doors
state: 'closed'
2018-01-02 00:00:45 +00:00
action:
- service: script.dog_bark
- service: input_boolean.turn_off
entity_id: input_boolean.guard_dog