You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by eadmaster September 7, 2024
example
USBHIDKeyboard Kb;
Kb.begin();
USB.begin();
Kb.print("foo");
//..
//reinit serial when finished
Kb.end();
//USB.~ESPUSB(); // Explicit call to destructor
Serial.begin(115200);
Serial.println("this should appear"); // does not work!
````</div>