diff --git a/custom_components/midea_ac_lan/climate.py b/custom_components/midea_ac_lan/climate.py index b52d410..8e4c254 100644 --- a/custom_components/midea_ac_lan/climate.py +++ b/custom_components/midea_ac_lan/climate.py @@ -318,6 +318,11 @@ def swing_mode(self) -> str: ) + (2 if self._device.get_attribute(ACAttributes.swing_horizontal) else 0) return self._attr_swing_modes[swing_mode] + @property + def current_humidity(self) -> float | None: + """Midea Climate current humidity.""" + return cast(float | None, self._device.get_attribute("indoor_humidity")) + @property def outdoor_temperature(self) -> float: """Midea AC Climate outdoor temperature."""