mirror of
https://github.com/gdsports/USBHost_t36
synced 2024-11-13 12:45:04 -05:00
Display Vendor/Product ID on connect
This commit is contained in:
parent
9abafa6106
commit
03a7150872
@ -27,7 +27,7 @@ bool driver_active[CNT_DEVICES] = {false, false, false, false};
|
||||
void setup()
|
||||
{
|
||||
while (!Serial) ; // wait for Arduino Serial Monitor
|
||||
Serial.println("USB Host Testing");
|
||||
Serial.println("\n\nUSB Host Testing");
|
||||
myusb.begin();
|
||||
keyboard1.attachPress(OnPress);
|
||||
keyboard2.attachPress(OnPress);
|
||||
@ -46,7 +46,7 @@ void loop()
|
||||
Serial.printf("*** Device %s - disconnected ***\n", driver_names[i]);
|
||||
driver_active[i] = false;
|
||||
} else {
|
||||
Serial.printf("*** Device %s - connected ***\n", driver_names[i]);
|
||||
Serial.printf("*** Device %s %x:%x - connected ***\n", driver_names[i], drivers[i]->idVendor(), drivers[i]->idProduct());
|
||||
driver_active[i] = true;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user