-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
“Outside temperature threshold” explanation #304
Comments
Hi, |
Same issue here. I had to disable the integration because of this unfortunately. |
Same issue here. I have tried numerous configuration options. Mine is an awning, it shows it is working in winter mode, but the awning still tries to go out everyday as if it was in intermediate mode. |
I had the same issue, before giving more details, I would to congratulate @basbruss for the amazing work on this integration - I have tried lot of different integrations but none gave such good results as this one. the author explained in the readme that this integration purpose is mainly anti-glare. have said this, I've modified the file calculation.py and modified is_sunny as below: @property
def is_sunny(self) -> bool:
"""Check if condition can contain radiation in winter."""
# First, check if it's winter
if self.is_winter:
return False # If it's winter, return False immediately
# If it's not winter, proceed with the original logic
weather_state = None
if self.weather_entity is not None:
weather_state = get_safe_state(self.hass, self.weather_entity)
else:
return True
if self.weather_condition is not None:
return weather_state in self.weather_condition is just an additional check to return false every time that is winter. |
What version of Adaptive Cover are you using?
1.4.3
What version of Home Assistant are you using?
2024.8.3
Checklist
Describe the issue
Hello.
Sorry, could you explain where in the flow affects the setting of the field “Minimum outside temperature for summer mode”?
In the documentation it indicates:
If the minimum outside temperature for summer mode is set and the outside temperature falls below this threshold, summer mode will not be activated.
I am noticing that now that it is getting colder, even though the outside temperature is lower than the set threshold, the vertical blinds continue to lower as they usually do in summer, even though the operating mode on each blind indicates “winter”.
This also happens if the indoor temperature is lower than the set comfort temperature.
Could you please explain how this setting affects the algorithm? Maybe there is some detail that I am not taking into account or understanding.
Thank you very much for your time
Reproduction steps
(Outdoor temperature)
Indoor temperature below the set comfort threshold
But the louvers continue to lower as in summer.
Diagnostics dump
No response
The text was updated successfully, but these errors were encountered: