1
0
ansible-home-assistant/configuration/automations/presence.yaml

46 lines
1.0 KiB
YAML

- id: presence-arrive
alias: '[Presence] Arrive Home'
trigger:
- platform: state
entity_id: person.przemek
to: home
condition:
- condition: not
conditions:
- condition: state
entity_id: input_select.home_mode
state: Day
action:
- service: notify.mobile_app_iphone
data:
message: Arrive home
data:
actions:
- action: ARRIVE_HOME
title: Run automation
- action: UNLOCK_DOOR
title: Unlock door
- id: presence-leave
alias: '[Presence] Leave Home'
trigger:
- platform: state
entity_id: person.przemek
from: home
condition:
- condition: not
conditions:
- condition: state
entity_id: input_select.home_mode
state: Away
action:
- service: notify.mobile_app_iphone
data:
message: You left home
data:
actions:
- action: LEAVE_HOME
title: Run automation
- action: LOCK_DOOR
title: Lock door