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.
main.cpp
00001 #include "mbed.h" 00002 #include "USBKeyboard.h" 00003 00004 DigitalOut trigger(LED1); 00005 DigitalIn event(p22); 00006 USBKeyboard k; 00007 00008 int main() { 00009 while (1) { 00010 trigger = event; 00011 if (event) { 00012 k.putc('|'); 00013 trigger = event; 00014 wait(1); 00015 while (!event) { 00016 trigger = event; 00017 } 00018 } 00019 } 00020 }
Generated on Tue Jul 12 2022 17:09:08 by
