We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 344e354 + 9f12795 commit 13ad911Copy full SHA for 13ad911
custom_components/daikin_onecta/climate.py
@@ -790,7 +790,7 @@ async def async_turn_on(self):
790
_LOGGER.error("Device '%s' problem setting onOffMode to on", self._device.name)
791
else:
792
cc["onOffMode"]["value"] = "on"
793
- self._attr_hvac_mode = HVACMode.ON
+ self._attr_hvac_mode = self.get_hvac_mode()
794
self.async_write_ha_state()
795
796
_LOGGER.debug(
@@ -810,7 +810,7 @@ async def async_turn_off(self):
810
_LOGGER.error("Device '%s' problem setting onOffMode to off", self._device.name)
811
812
cc["onOffMode"]["value"] = "off"
813
- self._attr_hvac_mode = HVACMode.OFF
814
815
816
0 commit comments