Skip to content

Commit

Permalink
Fix incorrect StreamDeck XL reset command.
Browse files Browse the repository at this point in the history
  • Loading branch information
abcminiuser committed Nov 16, 2019
1 parent e487aff commit 906ee5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StreamDeck/Devices/StreamDeckXL.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def reset(self):
"""

payload = bytearray(32)
payload[0:2] = [0x03, 0x03]
payload[0:2] = [0x03, 0x02]
self.device.write_feature(payload)

def set_brightness(self, percent):
Expand Down

0 comments on commit 906ee5d

Please sign in to comment.