mirror of
https://github.com/home-assistant/core.git
synced 2025-08-10 08:05:06 +02:00
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
This commit is contained in:
committed by
Fabian Affolter
parent
bbd01968ba
commit
be989ebb7e
@@ -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."""
|
||||
|
Reference in New Issue
Block a user