Skip to content

Commit

Permalink
Fix unconditionally set independent aux heat bit (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
mill1000 authored Feb 23, 2025
1 parent d189691 commit 612ccb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msmart/device/AC/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def tobytes(self) -> bytes: # pyright: ignore[reportIncompatibleMethodOverride]
freeze_protect = 0x80 if self.freeze_protection else 0

# Build independent aux heat
independent_aux_heat = 0x08
independent_aux_heat = 0x08 if self.independent_aux_heat else 0

return super().tobytes(bytes([
# Set state
Expand Down

0 comments on commit 612ccb0

Please sign in to comment.