mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 12:17:07 +00: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:
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."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user