Testing timing / reliability of using fewer presence detectors
This commit is contained in:
parent
1ae1bdd3d2
commit
f4810cfa55
|
@ -174,7 +174,7 @@ automation:
|
||||||
entity_id: input_boolean.kat_travel_monitor
|
entity_id: input_boolean.kat_travel_monitor
|
||||||
- service: script.ah_report
|
- service: script.ah_report
|
||||||
data:
|
data:
|
||||||
speech_message: 'Kat has arrived at worked.'
|
speech_message: 'Kat has arrived at work.'
|
||||||
call_interuption: 1
|
call_interuption: 1
|
||||||
|
|
||||||
- id: kat_leaves_zoo
|
- id: kat_leaves_zoo
|
||||||
|
@ -270,6 +270,35 @@ automation:
|
||||||
entity_id: input_boolean.skylar_school
|
entity_id: input_boolean.skylar_school
|
||||||
initial_state: true
|
initial_state: true
|
||||||
|
|
||||||
|
- id: test_family_has_arrived
|
||||||
|
alias: Test Family Has arrived
|
||||||
|
trigger:
|
||||||
|
- entity_id: group.family
|
||||||
|
from: not_home
|
||||||
|
platform: state
|
||||||
|
to: home
|
||||||
|
action:
|
||||||
|
- service: script.text_notify
|
||||||
|
data_template:
|
||||||
|
who: "jeff"
|
||||||
|
title: "Family has arrived"
|
||||||
|
message: "Someone in the Family has arrived"
|
||||||
|
|
||||||
|
- id: test_family_has_left
|
||||||
|
alias: Test Family Has left
|
||||||
|
trigger:
|
||||||
|
- entity_id: group.family
|
||||||
|
from: home
|
||||||
|
platform: state
|
||||||
|
to: not_home
|
||||||
|
action:
|
||||||
|
- service: script.text_notify
|
||||||
|
data_template:
|
||||||
|
who: "jeff"
|
||||||
|
title: "Family has left"
|
||||||
|
message: "Everyone in the Family has left"
|
||||||
|
|
||||||
|
|
||||||
- id: family_has_arrived
|
- id: family_has_arrived
|
||||||
alias: Family Has arrived
|
alias: Family Has arrived
|
||||||
trigger:
|
trigger:
|
||||||
|
|
Loading…
Reference in New Issue