We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i'm using the dev version of this extension
pool_pump: switch_entity_id: switch.pompe_piscine pool_pump_mode_entity_id: input_select.pool_pump_mode pool_temperature_entity_id: sensor.piscine_filtrage schedule_break_in_hours: 0.0
it's impossible to filter more than around 17-18 hours due to pivot attribute and 1/3 before, 2/3 after. as example value, today :
But at midnight, the pool_pump calculate a new filtration need as it's a new day and the automation every 15minutes of pool_pump stop the filtration
automation every 15minutes of pool_pump
So today it will be filtering around 16h26 instead of 18h26 expected
For me, it's a important bug as it can result important consequence on the water due to lack of filtration when it's very hot.
The text was updated successfully, but these errors were encountered:
Fix Bug for Filtration time, impossible to use more than ~17h
b6ac818
Fixing issue #32 ( oncleben31/ha-pool_pump#32 ) if end_time (start_time + duration) > 23h59 ; do then : set end_time to 00h00 move start_time earlier : ``` self._start_time = self._start_time - ( self.start_time + timedelta(hours=self.duration) - datetime.combine(self.start_time + timedelta(hours=self.duration), datetime.min.time()) ) ```
Fix issue #32 ( oncleben31/ha-pool_pump#32 )
94c3f82
Can you review my merge request in pypool-pump repo ? Regards
pypool-pump
Sorry, something went wrong.
Hi, It's frustrating to not get news since several months
Can you review my merge request in pypool-pump repo ? ( cf oncleben31/pypool-pump#5 ) Regards
No branches or pull requests
Version of the custom_component
i'm using the dev version of this extension
Configuration
Describe the bug
it's impossible to filter more than around 17-18 hours due to pivot attribute and 1/3 before, 2/3 after.
as example value, today :
But at midnight, the pool_pump calculate a new filtration need as it's a new day and the
automation every 15minutes of pool_pump
stop the filtrationSo today it will be filtering around 16h26 instead of 18h26 expected
For me, it's a important bug as it can result important consequence on the water due to lack of filtration when it's very hot.
The text was updated successfully, but these errors were encountered: