What? There is no HVAC system. Their just air conditioners, and temperature sensors. I need the trigger to fire every 59 seconds, upon triggering i need it to check using conditions if the temperature sensor is below the value in the number helper, or when it is above. (Two Separate automations, one for on one for off)
Can I do what u just said using conditions Instead of triggers?
Really sorry, I was mistaken — you can’t use templates in the below: field. You can use platform: template to do a similar job — I’ll reply later with a solution.
However, it’s preferable to trigger from “real events” such as temperature changes rather than doing time-based triggers. You then get the action happening at the exact time of the update rather than up to a minute later, and if there is no change, the automation doesn’t run.
Ya that makes sense. Problem is that if, say it’s 70 degrees in the room in question. Say bedroom. And the number it’s set to is 67. But the air conditioners are already off, and it already triggered once or rebooted with them off. So the state does not change to being above 67 degrees and trigger the event, despite continually heating up to well over 67 degrees. Because it didn’t change to being above 67 degrees. So it won’t trigger. Say I use a 59 second timer and use the general trigger of the state changing on the sensor/sensors in question. It trigger every time the state changes regardless of temperature. So if you set the condition to be a numeric state that’s a variable, you avoid the issues and even if the temperature stays exactly the same because say it rebooted with them off and the sensor stopped working or the temperature didn’t change, their is still a 59 second timer and the condition of a Numeric state. So it covers all the bases.
Ya I see what you mean. Start-up automation is definitely a good idea. but I only have this and a few other minor things running on the raspberry pi outside docker. home assistant and most everything else is on home assistant. Only thing that isn’t is a VPN idek when I used last. I never had any issue with response time on my home assistant. The main reason I do this is that sometimes ecowitt sensors don’t actually trigger events when they change state. It only happened like three times total and may be due to network issues, but if I leave for vacation it’s more or less mandatory that this all works without a single hitch as I have a chinchilla that needs it to have the temperature and humidity regulated.
Thank you very much for your reply. Unfortunately, I didn’t get any notification.
In the meanwhile I learned a lot about templates and in the end I placed a service template directly in the Action part of the automation, which is working fine as well.