changed Venstar component temperature to half degree accuracy (#30034)

pull/30055/head
Erik Kastelec 2019-12-18 14:47:01 +01:00 committed by Alexei Chetroi
parent 9c7caaa142
commit d16011b849
1 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ from homeassistant.const import (
CONF_SSL, CONF_SSL,
CONF_TIMEOUT, CONF_TIMEOUT,
CONF_USERNAME, CONF_USERNAME,
PRECISION_WHOLE, PRECISION_HALVES,
STATE_ON, STATE_ON,
TEMP_CELSIUS, TEMP_CELSIUS,
TEMP_FAHRENHEIT, TEMP_FAHRENHEIT,
@ -134,9 +134,9 @@ class VenstarThermostat(ClimateDevice):
"""Return the precision of the system. """Return the precision of the system.
Venstar temperature values are passed back and forth in the Venstar temperature values are passed back and forth in the
API as whole degrees C or F. API in C or F, with half-degree accuracy.
""" """
return PRECISION_WHOLE return PRECISION_HALVES
@property @property
def temperature_unit(self): def temperature_unit(self):