mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
current temp could be none (#6759)
This commit is contained in:
parent
0b7f873120
commit
82c599a749
@ -112,8 +112,9 @@ class ZWaveClimate(ZWaveDeviceEntity, ClimateDevice):
|
||||
_LOGGER.debug("Setpoint is 0, setting default to "
|
||||
"current_temperature=%s",
|
||||
self._current_temperature)
|
||||
self._target_temperature = (
|
||||
round((float(self._current_temperature)), 1))
|
||||
if self._current_temperature is not None:
|
||||
self._target_temperature = (
|
||||
round((float(self._current_temperature)), 1))
|
||||
else:
|
||||
self._target_temperature = round(
|
||||
(float(self.values.primary.data)), 1)
|
||||
|
Loading…
x
Reference in New Issue
Block a user