34 lines
798 B
YAML
34 lines
798 B
YAML
|
- id: presence-arrive
|
||
|
alias: '[Presence] Arrive Home'
|
||
|
trigger:
|
||
|
- platform: state
|
||
|
entity_id: person.przemek
|
||
|
to: home
|
||
|
action:
|
||
|
- service: notify.mobile_app_iphone_pg
|
||
|
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
|
||
|
action:
|
||
|
- service: notify.mobile_app_iphone_pg
|
||
|
data:
|
||
|
message: You left home
|
||
|
data:
|
||
|
actions:
|
||
|
- action: LEAVE_HOME
|
||
|
title: Run automation
|
||
|
- action: LOCK_DOOR
|
||
|
title: Lock door
|