Skip to content

Commit

Permalink
fix(e3): e3 water heater set power cause current operation unknown (#417
Browse files Browse the repository at this point in the history
)
  • Loading branch information
wuwentao authored Dec 16, 2024
1 parent 406ab58 commit 5c21f56
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions custom_components/midea_ac_lan/water_heater.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,13 @@ def precision(self) -> float:
PRECISION_HALVES if self._device.precision_halves else PRECISION_WHOLE,
)

@property
def current_operation(self) -> str:
"""Midea E3 Water Heater current operation."""
return str(
STATE_ON if self._device.get_attribute("power") else STATE_OFF,
)


class MideaC3WaterHeater(MideaWaterHeater):
"""Midea C3 Water Heater Entries."""
Expand Down

0 comments on commit 5c21f56

Please sign in to comment.