diff --git a/docs/devices.md b/docs/devices.md index 32f66c38..c3f2693e 100644 --- a/docs/devices.md +++ b/docs/devices.md @@ -62,6 +62,7 @@ a tuple of known feature settings (from `lib/logitech/settings_templates.py`). | 064d:c53d | Lightspeed | 1 | | 064d:c53f | Lightspeed | 1 | | 064d:c545 | Lightspeed | 1 | +| 064d:c541 | Lightspeed | 1 | | 17ef:6042 | Nano | 1 | * The receiver with USB Id 046d:c517 is an old 27 MHz receiver, supporting only diff --git a/lib/logitech_receiver/base_usb.py b/lib/logitech_receiver/base_usb.py index 72c128ac..323773a7 100644 --- a/lib/logitech_receiver/base_usb.py +++ b/lib/logitech_receiver/base_usb.py @@ -128,6 +128,7 @@ LIGHTSPEED_RECEIVER_C53a = _lightspeed_receiver(0xc53a) LIGHTSPEED_RECEIVER_C53f = _lightspeed_receiver(0xc53f) LIGHTSPEED_RECEIVER_C53d = _lightspeed_receiver(0xc53d) LIGHTSPEED_RECEIVER_C545 = _lightspeed_receiver(0xc545) +LIGHTSPEED_RECEIVER_C541 = _lightspeed_receiver(0xc541) del _DRIVER, _unifying_receiver, _nano_receiver, _lenovo_receiver, _lightspeed_receiver @@ -152,6 +153,7 @@ ALL = ( LIGHTSPEED_RECEIVER_C53f, LIGHTSPEED_RECEIVER_C53d, LIGHTSPEED_RECEIVER_C545, + LIGHTSPEED_RECEIVER_C541, ) diff --git a/rules.d/42-logitech-unify-permissions.rules b/rules.d/42-logitech-unify-permissions.rules index dbeb1011..7f5ebbe4 100644 --- a/rules.d/42-logitech-unify-permissions.rules +++ b/rules.d/42-logitech-unify-permissions.rules @@ -41,6 +41,7 @@ ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53a", GOTO="solaar_apply" ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53d", GOTO="solaar_apply" ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53f", GOTO="solaar_apply" ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c545", GOTO="solaar_apply" +ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c541", GOTO="solaar_apply" # Lenovo nano receiver ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="6042", GOTO="solaar_apply"