I'm reading a simple QR code with json text, using a raspberry pi and Aibecy mp2600 QR scanner (handsfree): {test:Hi} https://i.stack.imgur.com/9M4OC.png import hid import time h = hid.device() h.open(0x1eab, 0x8003) print("Manufacturer: %s" % h.get_manufacturer_string()) print("Product: %s" % h.get...