mirror of
https://github.com/home-assistant/core.git
synced 2025-07-19 11:17:21 +00:00
Add hvac modes back to opentherm (#25268)
This commit is contained in:
parent
5c53257c23
commit
53954d6f8f
@ -130,9 +130,14 @@ class OpenThermClimate(ClimateDevice):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def hvac_mode(self):
|
def hvac_mode(self):
|
||||||
"""Return current operation ie. heat, cool, idle."""
|
"""Return current HVAC mode."""
|
||||||
return self._current_operation
|
return self._current_operation
|
||||||
|
|
||||||
|
@property
|
||||||
|
def hvac_modes(self):
|
||||||
|
"""Return available HVAC modes."""
|
||||||
|
return []
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def current_temperature(self):
|
def current_temperature(self):
|
||||||
"""Return the current temperature."""
|
"""Return the current temperature."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user