Go to advanced search

by howwhykid
Mon Aug 20, 2018 4:31 am
Forum: Python
Topic: QR scanner output using HID
Replies: 3
Views: 952

QR scanner output using HID

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...

Go to advanced search