Skip to content

Commit

Permalink
issue #804 - addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Marc Collin committed Jan 12, 2025
1 parent 1d675f2 commit 12b67ba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion custom_components/versatile_thermostat/thermostat_climate.py
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,8 @@ async def end_climate_changed(changes: bool):
and under.last_sent_temperature is not None
):
_LOGGER.debug(
"Do temperature check. under.last_sent_temperature is %s, new_target_temp is %s",
"%s - Do temperature check. under.last_sent_temperature is %s, new_target_temp is %s",
self,
under.last_sent_temperature,
new_target_temp,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,11 @@ async def _send_regulated_temperature(self, force=False):
)

self._last_regulation_change = self.now
self.reset_last_change_time_from_vtherm()

_LOGGER.debug("%s - last_regulation_change is now: %s", self, self._last_regulation_change)
_LOGGER.debug(
"%s - last_regulation_change is now: %s and last_change_from_vtherm is now: %s", self, self._last_regulation_change, self._last_change_time_from_vtherm
) # pylint: disable=protected-access

for under in self._underlyings_valve_regulation:
await under.set_valve_open_percent()
Expand Down

0 comments on commit 12b67ba

Please sign in to comment.