-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix generic_thermostat so it doesn't turn on when current temp is within target temp range #138209
Conversation
We need a testcase for this. |
Ok - I'll try my best to see if I can figure those out - I'm very new to Python and never done test cases... I'll try and seek some help 🙂 |
I see it's failing two tests where it's checking if the current temperature is "within tolerances". Thank you for flagging the tests (leading to me figuring out how they work). I've converted this back to draft while I re-work the logic on the conditions causing it to fail the tests. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The title and description mentions only the lower/cold temp, but the PR also changes the behavior of the higher temp, right?
Also, this changes the current behavior of the integration. I think it should be noted as a breaking change on the PR description.
Please take a look at the requested changes, and use the Ready for review button when you are done, thanks 👍 |
Yes and no. You could argue that turning on when the room temperature was at the target temp was a bug. 😄 Yes it is a change that at the lower end, for heating, it has to be below target before turning on rather than when = to target. I'd argue it isn't a breaking change, but it is one that may need a configuration change (simplest is to change the step to make it more sensitive). |
It's been a while since I worked on this, so I don't recall exactly if it also affects higher temp, but the title could be changed so that it was "...current temp is above/below target temp" since the change does ensure that the current temp is outside of the tolerable range before turning on.
I'd agree with what @borpin said in that I would argue this isn't a breaking change, but a bugfix. It only impacts edge cases where it would turn the thermostat on when the current temperature was on the cusp of the tolerable range. Having a zero tolerance caused the thermostat to toggle on/off when the temperature was exactly at the set point. This fixes the issue so that the thermostat will only turn on once the temperature is beyond the tolerable range. If you have a zero tolerance set, it ensures that the thermostat doesn't toggle on/off if the temperature remains at the set point. |
I have updated the PR title so that it's clearer that the fix is to prevent the thermostat from turning on if the current temp is within the target temp range. |
Lets assume the following example:
With this change, the switch stays So, since this fixes an issue but changes the current behavior, I think we should mark it as breaking change so users are made aware of the change in behavior. Or did I misinterpret it? |
I've made the change, though I'd argue this is on the cusp of a breaking change, as it doesn't break anything - it just alters when the thermostat would engage in that the defined range is now inclusive... though based on the documentation for the settings, it should have always functioned the way this PR makes it work. |
Strictly, I think it will turn on depending on the step size of your sensor. If the temperature sensor is to 2 DP it will switch on at 18.99, if it is half a degree, at 18.5. |
Right, I was assuming 0.1 resolution in my example. Still, before this change it would have triggered at 19 already. That is the behavior change that is a breaking change, in case someone is relying on that behavior right now. This is another example of a similar change that was also flagged as a breaking change: #138819 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I've updated the PR's description to detail the behavior change.
Breaking change
The switch targeted by the
generic_thermostat
is now only turned on when the current temperature falls outside the target temperature range (target_temp +- tolerances). Previously, it would also turn on when the temperature was equal to the limit of the target range.Proposed change
Change the
generic_thermostat
so that it only turns on when the current temperature is below (not equal to) the target (including tolerance).Reasoning is that if the current temperature is within range of the target (including tolerance), it shouldn't be heating/cooling because the temperature is considered OK. Only when the current temperature drops above/below the target temperature should the thermostat turn on.
Type of change
Additional information
cold_tolerance
. home-assistant.io#37545Checklist
ruff format homeassistant tests
)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest
.requirements_all.txt
.Updated by running
python3 -m script.gen_requirements_all
.To help with the load of incoming pull requests: