I am working on an automation to alert me to check on my elderly father. He lives in a tiny house I built for him on my property. There is a living room/kitchen and a bedroom. I picked up a couple of MM wave sensors. 1 in each room. I am working on an automation to send me a notification to go check on him basically because I worry. He is not in the best health. I currently have 3 conditions. 1 to check for occupancy in the bedroom (and) check for occupancy in the Living/kitchen (and) his phone is at home. If both sensors become unoccupied for 1 hour and the phone is still at home I get a notification to go check on him. I am not thinking of any trigger basically because I just want it running 24/7/365.
alias: Check on dad
description: “”
triggers:
conditions:
The automation you have posted will never do anything. If there isn’t a trigger to initiate it, it will just sit there forever.
The normal method in HA is to use both sensors’ states as triggers and mirror them in the conditions, that way either value can start the automation and either can stop the actions from being executed.
If you just don’t want to do that, you could use a Time Pattern trigger to check the conditions at regular intervals. This isn’t generally recommended since it is usually less efficient.