Skip to content

Instantly share code, notes, and snippets.

@citizenrich
Created August 28, 2020 16:08
Show Gist options
  • Save citizenrich/c5082369f602c8737487a75cd1e3584d to your computer and use it in GitHub Desktop.
Save citizenrich/c5082369f602c8737487a75cd1e3584d to your computer and use it in GitHub Desktop.
import hid
vid = 0x20CE # minicircuits
pid = 0x0022 # minicircuits
with hid.Device(vid, pid) as h:
print(f'Device manufacturer: {h.manufacturer}')
print(f'Product: {h.product}')
print(dir(h))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment