diff --git a/homeassistant/components/thermostat/nest.py b/homeassistant/components/thermostat/nest.py index 428f32694f4..9c4dbfaf937 100644 --- a/homeassistant/components/thermostat/nest.py +++ b/homeassistant/components/thermostat/nest.py @@ -112,7 +112,7 @@ class NestThermostat(ThermostatDevice): range_average = (low + high)/2 if self.current_temperature < range_average: temp = low - elif self.current_temperature > range_average: + elif self.current_temperature >= range_average: temp = high else: temp = target