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 28a92ea commit ba7b4d4Copy full SHA for ba7b4d4
examples/WebUSB/webusb_serial/webusb_serial.ino
@@ -50,7 +50,7 @@ void setup()
50
// wait until device mounted
51
while( !USBDevice.mounted() ) delay(1);
52
53
- Serial.println("Adafruit TinyUSB WebUSB example");
+ Serial.println("TinyUSB WebUSB example");
54
}
55
56
// function to echo to both Serial and WebUSB
@@ -75,4 +75,6 @@ void loop()
75
void line_state_callback(bool connected)
76
{
77
digitalWrite(led_pin, connected);
78
+
79
+ if ( connected ) usb_web.println("TinyUSB WebUSB example");
80
0 commit comments