From a4afffe6c3e450af87d55f39b709e5e032918b4c Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sat, 19 Mar 2022 10:08:53 -0400 Subject: [PATCH] device: support C542 receiver for M190 mice --- lib/logitech_receiver/base_usb.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/logitech_receiver/base_usb.py b/lib/logitech_receiver/base_usb.py index 746ff073..6e94b7f9 100644 --- a/lib/logitech_receiver/base_usb.py +++ b/lib/logitech_receiver/base_usb.py @@ -158,6 +158,7 @@ NANO_RECEIVER_C52E = _nano_receiver_no_unpair(0xc52e) NANO_RECEIVER_C531 = _nano_receiver(0xc531) NANO_RECEIVER_C534 = _nano_receiver_max2(0xc534) NANO_RECEIVER_C537 = _nano_receiver(0xc537) +NANO_RECEIVER_C542 = _nano_receiver(0xc542) NANO_RECEIVER_6042 = _lenovo_receiver(0x6042) # Lightspeed receivers (usually sold with gaming devices) @@ -187,6 +188,7 @@ ALL = ( NANO_RECEIVER_C531, NANO_RECEIVER_C534, NANO_RECEIVER_C537, + NANO_RECEIVER_C542, NANO_RECEIVER_6042, LIGHTSPEED_RECEIVER_C539, LIGHTSPEED_RECEIVER_C53A,