Skip to content

Commit

Permalink
Merge pull request #75 from ronindesign/patch-1
Browse files Browse the repository at this point in the history
Fix Turbo mode for MRCOOL BI04 devices
  • Loading branch information
bodyscape authored Dec 26, 2024
2 parents 77d12cf + b12493e commit 2f19989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/cielo_home/cielohomedevice.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def _send_turbo(self, value) -> None:
action["turbo"] = value
self._device["latestAction"]["turbo"] = value

if self.get_device_type_version() != "BI03":
if self.get_device_type_version() != "BI03" or self.get_device_type_version() != "BI04":
value = "on/off"

self._send_msg(action, "turbo", value)
Expand Down

0 comments on commit 2f19989

Please sign in to comment.