With the new updates I am seeing with HA and the powerful automation tools I am moving back from node red to HA. I just wanted to check my logic on this automation is correct. I want to unlock the front door when I return from my walk. Using camera person occupancy as the wait to actually trigger. Seeing if what I made look ok?
alias: unlock door when i walk home
description: ""
trigger:
- platform: zone
entity_id: person.hans_van_der_drift
zone: zone.home
event: enter
condition:
- condition: state
entity_id: sensor.iphone_mini_13_activity
attribute: Types
state: Walking
for:
hours: 0
minutes: 0
seconds: 0
- condition: state
entity_id: binary_sensor.konnected_7e1888_zone_10
state: "off"
action:
- parallel:
- wait_for_trigger:
- type: occupied
platform: device
device_id: ffa636b1fa9b8d5e98dd0aa1662b1e7e
entity_id: binary_sensor.garage_frigate_person_occupancy
domain: binary_sensor
continue_on_timeout: false
timeout:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- wait_for_trigger: []
continue_on_timeout: false
timeout:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- service: lock.unlock
data: {}
target:
entity_id: lock.front_door_lock
mode: single
type or paste code here
The iPhone activity sensor gives a list. Normally this list contains one item, but keep in mind there can be multiple ones (probably when the certainty isnāt that high). There is a confidence attribute you can check too. Regardless, I think, change that to a template condition and take the first element. Iāve not been able to confirm this, but it seems the first element will always be the best guess.
What is the purpose of the 2nd wait for trigger?
This is perhaps a matter of taste, but Iād use a state trigger for the zone: Just trigger on the state with a to.
For the first wait for trigger (and in general) refrain from using device triggers. A state trigger will be much simpler and more maintainable. There are some posts on the forum explaining this in detail.
I posted the incorrect code. It should have been a second camera in case I come in from another direction.
This is perhaps a matter of taste, but Iād use a state trigger for the zone: Just trigger on the state with a to.
I have changed it to a āState Triggerā
For the first wait for trigger (and in general) refrain from using device triggers. A state trigger will be much simpler and more maintainable. There are some posts on the forum explaining this in detail.
I did some reading and changed the code to state triggers also.
I think, change that to a template condition and take the first element.
This is the only part I am yet to work out. If you have an example, I would appreciate it. I need to harness the power of templating.
Thanks again.
alias: unlock door when i walk home
description: ""
trigger:
- platform: state
entity_id:
- person.hans_van_der_drift
from: not_home
to: home
condition:
- condition: state
entity_id: sensor.iphone_mini_13_activity
attribute: Types
state: Walking
for:
hours: 0
minutes: 0
seconds: 0
- condition: state
entity_id: binary_sensor.konnected_7e1888_zone_10
state: "off"
action:
- parallel:
- wait_for_trigger:
- platform: state
entity_id:
- binary_sensor.front_door_frigate_person_occupancy
to: "on"
continue_on_timeout: false
timeout:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
- wait_for_trigger:
- platform: state
entity_id:
- binary_sensor.garage_frigate_person_occupancy
to: "on"
timeout:
hours: 0
minutes: 2
seconds: 0
milliseconds: 0
continue_on_timeout: false
- service: lock.unlock
data: {}
target:
entity_id: lock.front_door_lock
mode: single
Pieter, I think I have it all working now. Will test in the real world tomorrow. Looking at your below code, how would you handle you and a passenger (in my case my wife) with the same automation to open the garage door? In my case the door would close again.
- alias: "Open Garage Door When Arriving By Car"
initial_state: true
trigger:
- platform: state
entity_id: binary_sensor.pieter_present
to: "on"
condition:
- condition: and
conditions:
# prevent a glitch in case the cover was recently closed
- condition: state
entity_id: cover.rhs_garage_door
state: "closed"
for:
minutes: 5
- condition: time
after: "07:00:00"
before: "23:00:00"
# i must be arriving by car
- condition: state
entity_id: binary_sensor.pieter_driving
state: "on"
# my cover for my car
- condition: state
entity_id: binary_sensor.rhs_garage_occupied
state: "off"
# proxy for the alarm being off
- condition: state
entity_id: binary_sensor.rouve_present
state: "on"
for:
minutes: 5
action:
- service: cover.open_cover
entity_id: cover.rhs_garage_door
Iām assuming your door/cover doesnāt have state (i.e. you donāt know whether itās open or not). Is my understanding right? If thatās the case, I think it would really help to add a door sensor. When you have that, you can add mode: single to your automation and also a condition to check whether the door (cover) is already open. Thereās very little cost to triggering an automation thatās then aborted due to a condition.
If you donāt have state, then Iād still add mode: single, but it will only cover you if both devices changes (update) their location very close apart. I think the optimistic mode of a template cover might help you. Otherwise, you could create your own helper (like an input boolean) to try and maintain a synced state. These things just tend to get out of syncā¦ The optimistic mode probably has the same challenge.
Perhaps the most robust option for this scenario (where you donāt know the coverās state), is to simply check when last the lockās status was triggered. Putting this in a condition under your actions will say: Only if the lockās status has changed more than a minute ago, I will attempt to unlock it. If you then trigger the automation on both people, they will race towards the unlock call, but once one is past this point, the other will fail (given internal states have updated quickly enough).
Regarding my code, we have split garage doors (two singles) and my wife doesnāt like the automatic opening. Since I havenāt yet automated my alarm or connected it to HA, Iām using her being home as a proxy for the alarm being off.
The last_changed āattributeā isnāt accessible via the state_attr function (but youāre entirely right to have tried this, because intuitively it makes sense). Itās actually a property of the state object(s). Youāll see e.g. the attributes is then a property that contains all the attributes.
My automation. (I have made two, one for garage opening, one for door unlocking) have yet to work as intended in real life testingā¦ Ill post both after I get it to work.
Sorry for all the questions, your answers make me ponder and sometimes the logic baffles me.
- alias: "Set Pieter's Driving State"
id: "2cc8c07c-384d-4fce-ab9e-11e2c7a25b60"
initial_state: true
trigger:
- platform: state
entity_id: sensor.pieter_activity_type
to: "Automotive" # from anything else
- platform: state
entity_id: sensor.pieter_activity_type
from: "Automotive" # to anything else
action:
- service: "input_boolean.turn_{{ 'on' if is_state('sensor.pieter_activity_type', 'Automotive') else 'off' }}"
entity_id: input_boolean.pieter_driving
I have emulated your code and it works great, in a bi-directional mode. So, if I drive, the input will toggle, or if I toggle, the boolean will toggle.
But this code for Hans Presence works only one way. Meaning the Boolean will toggle the input, but when I leave the zone the input boolean remains ON.
Here is my code:
alias: Toggle Input B of Hans present or away
description: ""
trigger:
- platform: state
entity_id:
- binary_sensor.hans_present
to: "on"
id: hans-on
- platform: state
entity_id:
- binary_sensor.hans_present
id: hans-off
from: "on"
condition: []
action:
- service: >-
input_boolean.turn_{{ 'on' if is_state('binary_sensor.hans_present', 'on')
else 'off' }}
entity_id: input_boolean.hans_present
enabled: true
mode: single
What is the definition of binary_sensor.hans_present?
Were there perhaps any errors in your log?
This version is a bit more compact and pretty much does the same thing. I canāt see anything wrong immediately, unless thereās a circular reference where the binary sensor uses the input boolean, which triggers the automation, etc.
alias: Toggle Input B of Hans present or away
trigger:
- platform: state
entity_id:
- binary_sensor.hans_present
action:
- service: >-
input_boolean.turn_{{ 'on' if is_state('binary_sensor.hans_present', 'on') else 'off' }}
entity_id: input_boolean.hans_present
mode: single
There was also a enabled: true that I removed that looks unfamiliar to me. Was that perhaps added by mistake?
So, it seems when the automation turns the input booean on it stays on, as there are two states that triger the state.
Which leads me to another question, why do you have Input Booleans and a Bianry sensor? I can see the input it useful for testing but what other cased would you use one over the other?
The binary sensor uses the combination of the input boolean and the person state (if either is home/on, the person is definitely home).
The person entity is linked to the companion app (and hence uses GPS location). The input boolean is set by a home automation (iOS shortcuts app with my Apple TV being a home hub), since the home hubs can check presence too.
Lots of people uses multiple inputs for faster and more certain updates, typically using a Bayesian sensor, but Iāve found this simplified version to work well for me. Itās from a time when the companion app updates werenāt that reliable (a few years ago). Not itās just a backup.
So, in short, I only ever use the binary sensor. The input boolean is only references by the sensor and set externally.