diff --git a/homeassistant/components/daikin/climate.py b/homeassistant/components/daikin/climate.py index 0ac6b0cf353..4b97c8dc21a 100644 --- a/homeassistant/components/daikin/climate.py +++ b/homeassistant/components/daikin/climate.py @@ -163,7 +163,9 @@ class DaikinClimate(ClimateEntity): # temperature elif attr == ATTR_TEMPERATURE: try: - values[HA_ATTR_TO_DAIKIN[ATTR_TARGET_TEMPERATURE]] = str(int(value)) + values[HA_ATTR_TO_DAIKIN[ATTR_TARGET_TEMPERATURE]] = str( + round(float(value), 1) + ) except ValueError: _LOGGER.error("Invalid temperature %s", value)