From a034a0ea107e0c795291bfbd69009f445163ac8c Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Wed, 16 Mar 2022 22:18:41 -0400 Subject: [PATCH] device: broaden range of bluetooth devices --- lib/logitech_receiver/base_usb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/base_usb.py b/lib/logitech_receiver/base_usb.py index e8b1e2f5..746ff073 100644 --- a/lib/logitech_receiver/base_usb.py +++ b/lib/logitech_receiver/base_usb.py @@ -226,7 +226,7 @@ def other_device_check(bus_id, vendor_id, product_id): if (product_id >= 0xC07D and product_id <= 0xC094 or product_id >= 0xC32B and product_id <= 0xC344): return _wired_device(product_id, 2) elif bus_id == 0x5: # Bluetooth - if (product_id >= 0xB012 and product_id <= 0xB0FF or product_id >= 0xB32A and product_id <= 0xB3FF): + if (product_id >= 0xB012 and product_id <= 0xB0FF or product_id >= 0xB317 and product_id <= 0xB3FF): return _bt_device(product_id)