Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: USBDevice USBSerialKeyboard mbed
main.cpp
00001 #include "mbed.h" 00002 #include "USBSerialKeyboard.h" 00003 00004 USBSerialKeyboard keyboard; 00005 00006 int main() { 00007 //Send String over USBSerial 00008 keyboard.printf("Example Serial Print"); 00009 //Example Keypress 00010 keyboard.keypress('w', KEY_SHIFT); 00011 //Release all held Keys (limitation of usb keyboard?) 00012 keyboard.keyrelease(); 00013 }
Generated on Fri Jul 15 2022 02:06:55 by
1.7.2