diff --git a/homeassistant/components/climate/honeywell.py b/homeassistant/components/climate/honeywell.py index dbcbebff566..a76f992a76a 100644 --- a/homeassistant/components/climate/honeywell.py +++ b/homeassistant/components/climate/honeywell.py @@ -273,6 +273,11 @@ class HoneywellUSThermostat(ClimateDevice): """Return the current temperature.""" return self._device.current_temperature + @property + def current_humidity(self): + """Return the current humidity.""" + return self._device.current_humidity + @property def target_temperature(self): """Return the temperature we try to reach."""