Internal_temp or external_temp are not set #173
-
Hi What is the reason for ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
This is because as said in the error message, the internal temperature or the external temperature are not set. It is possible at startup to have this message while waiting for temperature sensors but this should not persist |
Beta Was this translation helpful? Give feedback.
-
@jmcollin78, maybe the following change in if internal_temp is None:
_LOGGER.warning("Temporarily skipping the self-regulation algorithm while the configured sensor for room temperature is unavailable")
return self.target_temp
if external_temp is None:
_LOGGER.warning("Temporarily skipping the self-regulation algorithm while the configured sensor for outdoor temperature is unavailable")
return self.target_temp |
Beta Was this translation helpful? Give feedback.
This is because as said in the error message, the internal temperature or the external temperature are not set.
Check your temperature sensor configuration and that they are working (giving a temperature).
It is possible at startup to have this message while waiting for temperature sensors but this should not persist