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.
3_USB_Keyboard/main.cpp
- Committer:
- kenjiArai
- Date:
- 2020-01-06
- Revision:
- 0:c6dea1f647f6
File content as of revision 0:c6dea1f647f6:
//#define EXAMPLE_3_KEYBOARD #ifdef EXAMPLE_3_KEYBOARD #include "mbed.h" #include "USBKeyboard.h" USBKeyboard key; int main(void) { while (true) { key.printf("Mbed USBDevice -- Keyboard on mbed-os5.15.0\r\n"); ThisThread::sleep_for(1000); } } #endif // EXAMPLE_3_KEYBOARD