Add hvac modes back to opentherm (#25268)

pull/25280/head
Paulus Schoutsen 2019-07-18 12:32:17 -07:00
parent 46cdbd273a
commit 86cf02739b
1 changed files with 6 additions and 1 deletions

View File

@ -130,9 +130,14 @@ class OpenThermClimate(ClimateDevice):
@property
def hvac_mode(self):
"""Return current operation ie. heat, cool, idle."""
"""Return current HVAC mode."""
return self._current_operation
@property
def hvac_modes(self):
"""Return available HVAC modes."""
return []
@property
def current_temperature(self):
"""Return the current temperature."""