From d16011b849088d17af6ed54657eeec3c837d4fd1 Mon Sep 17 00:00:00 2001 From: Erik Kastelec <34520112+erikkastelec@users.noreply.github.com> Date: Wed, 18 Dec 2019 14:47:01 +0100 Subject: [PATCH] changed Venstar component temperature to half degree accuracy (#30034) --- homeassistant/components/venstar/climate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/venstar/climate.py b/homeassistant/components/venstar/climate.py index df7dfcacb20..4ffe75acb9e 100644 --- a/homeassistant/components/venstar/climate.py +++ b/homeassistant/components/venstar/climate.py @@ -34,7 +34,7 @@ from homeassistant.const import ( CONF_SSL, CONF_TIMEOUT, CONF_USERNAME, - PRECISION_WHOLE, + PRECISION_HALVES, STATE_ON, TEMP_CELSIUS, TEMP_FAHRENHEIT, @@ -134,9 +134,9 @@ class VenstarThermostat(ClimateDevice): """Return the precision of the system. 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 def temperature_unit(self):