this post was submitted on 14 Jul 2023
12 points (92.9% liked)
homeassistant
12013 readers
136 users here now
Home Assistant is open source home automation that puts local control and privacy first. Powered by a worldwide community of tinkerers and DIY enthusiasts. Perfect to run on a Raspberry Pi or a local server. Available for free at home-assistant.io
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I have a similar automation setup to notify when the AC is running while the temperature is cooler outside. You could create an automation with a time based trigger (run every 5 mins) with a value template in the Conditions (along with any other conditions like only in the daytime, if blinds are open, etc):
{{ states('sensor.thermostat_current_temperature')|float>state_attr('weather.home', 'temperature')|float }}
And then in Actions: call service - Notifications: send via mobile app
Mine only differs in that it triggers based off the AC turning on.