From be989ebb7e74cbe889e109bf3300e75fd9df87d9 Mon Sep 17 00:00:00 2001 From: Hackashaq666 Date: Sat, 9 Mar 2019 11:17:28 -0500 Subject: [PATCH] Update honeywell.py to read current humidity for US Thermostats (#21728) * Update honeywell.py Add thermostat humidity reading available in somecomfort for US thermostats. * Update honeywell.py * Update honeywell.py --- homeassistant/components/climate/honeywell.py | 5 +++++ 1 file changed, 5 insertions(+) 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."""