Skip to content

Commit

Permalink
device: support bug in backlight on MX Keys S
Browse files Browse the repository at this point in the history
  • Loading branch information
pfps committed Jan 28, 2024
1 parent 67b883a commit d5d78d7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/logitech_receiver/settings_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,23 @@ class Backlight(_Setting):
validator_options = {'choices': choices_universe}


# MX Keys S requires some extra values, as in 11 02 0c1a 000dff000b000b003c00000000000000
# on/off options (from current) effect (FF-no change) level (from current) durations[6] (from current)
class Backlight2(_Setting):
name = 'backlight'
label = _('Backlight')
description = _('Turn illumination on or off on keyboard.')
feature = _F.BACKLIGHT2

class rw_class(_FeatureRW):
trail = None

def write(self, device, data_bytes):
if self.trail is None:
reply = device.feature_request(_F.BACKLIGHT2, 0x00)
self.trail = reply[1:2] + b'\xff' + reply[5:12]
return super().write(device, data_bytes + self.trail)


class Backlight3(_Setting):
name = 'backlight-timed'
Expand Down

0 comments on commit d5d78d7

Please sign in to comment.