this post was submitted on 03 Apr 2026
1 points (100.0% liked)
homeassistant
19325 readers
4 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.
Home Assistant can be self-installed on ProxMox, Raspberry Pi, or even purchased pre-installed: Home Assistant: Installation
Discussion of Home-Assistant adjacent topics is absolutely fine, within reason.
If you're not sure, DM @GreatAlbatross@feddit.uk
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I think you could create a toggle entity. When the high automation goes off, set it to True. Have logic in the high automation that says don't go off if true. For the low automation, have it only go off if true. And then set it to false when it's done.
I'm not sure if I explain that well. But basically the toggle entity would act as a switch that enabled the automation to run, because the automation would check the state of the toggle every time.
That sounds like it would require two automations. All of the triggers are in one single automation.
If I've understood @surewhynotlem@lemmy.world correctly, this won't need 2 automations
When you exceed a max, I presume you're triggering the AC to heat / cool, at this point you'd also set the "dontlogthisagain" boolean.
Then, when you'd reached the correct temp range, then you can turn off the AC and reset the "dontlogthisagain" boolean.
The conditional statements would then be "(is the temp outsode of range) AND (dontlogthisagain=True)"
You'd need to check the logic is the right way around there, but - in my head - thst should work.
Edit: actually, thinking anout this some more, you might not need the boolean, you could use the on/off state of the AC unit itself