mirror of
https://github.com/home-assistant/core.git
synced 2025-08-14 10:05:13 +02:00
Fix omnilogic temperature sensor with metric setting (#41509)
This commit is contained in:
committed by
Paulus Schoutsen
parent
cca2594225
commit
7cdbbc248f
@@ -119,7 +119,7 @@ class OmniLogicTemperatureSensor(OmnilogicSensor):
|
||||
state = sensor_data
|
||||
|
||||
if self._unit_type == "Metric":
|
||||
hayward_state = round((hayward_state - 32) * 5 / 9, 1)
|
||||
hayward_state = round((int(hayward_state) - 32) * 5 / 9, 1)
|
||||
hayward_unit_of_measure = TEMP_CELSIUS
|
||||
|
||||
if int(sensor_data) == -1:
|
||||
|
Reference in New Issue
Block a user