From 689d57d097f8ac46b184c2fcaff1f0882960b7b3 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Sun, 21 Mar 2021 21:25:57 -0400 Subject: [PATCH] device: don't always use long messages for protocol 1.0 --- lib/logitech_receiver/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logitech_receiver/device.py b/lib/logitech_receiver/device.py index c38a4d16..240cc5b4 100644 --- a/lib/logitech_receiver/device.py +++ b/lib/logitech_receiver/device.py @@ -433,7 +433,7 @@ class Device(object): request_id, *params, no_reply=no_reply, - long_message=True # use long messages for all requests - was self.bluetooth + long_message=self.bluetooth or self.protocol >= 2.0 ) def feature_request(self, feature, function=0x00, *params, no_reply=False):