We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2888cf commit c102b1fCopy full SHA for c102b1f
USB_Host_BFF_Examples/CircuitPython_HIDReport/code.py
@@ -30,7 +30,7 @@
30
31
device.set_configuration()
32
33
-print(device.idVendor, device.idProduct, device.manufacturer, device.product, device.serial_number)
+print(f"{device.idVendor:04x}:{device.idProduct:04x}: {device.manufacturer} {device.product}")
34
35
# Test to see if the kernel is using the device and detach it.
36
if device.is_kernel_driver_active(0):
0 commit comments