From 86cf02739bf9021f8deb115275dee295247138ac Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Thu, 18 Jul 2019 12:32:17 -0700 Subject: [PATCH] Add hvac modes back to opentherm (#25268) --- homeassistant/components/opentherm_gw/climate.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/opentherm_gw/climate.py b/homeassistant/components/opentherm_gw/climate.py index 4d7ea85383b..d0b706cdad8 100644 --- a/homeassistant/components/opentherm_gw/climate.py +++ b/homeassistant/components/opentherm_gw/climate.py @@ -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."""