Skip to content

Commit

Permalink
fix(MUTE): fixed unavailable mute state constant - closes #18e (thanks
Browse files Browse the repository at this point in the history
  • Loading branch information
vgavro committed Oct 25, 2024
1 parent db3ac5a commit b74cdb8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samsung_mdc/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class MUTE(Command):
class MUTE_STATE(IntEnum):
OFF = 0x00
ON = 0x01
NONE = 0x255 # Unavailable
NONE = 0xFF # Unavailable

DATA = [MUTE_STATE]

Expand Down
2 changes: 1 addition & 1 deletion samsung_mdc/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.14.2'
__version__ = '1.14.3'

0 comments on commit b74cdb8

Please sign in to comment.