I want to fully automate my Air Conditioner using Home Assistant. I have three temperature values:
- outside temperature
- inside temperature
- desired temperature
I'm trying to find an algorithm that I will execute approximately every 2 hours (temp values are updated), depending on these temp values.
Something like this:
If (outside < inside) And (inside > desired) - turn AC ON
Can anyone help me, please? Thanks.