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 "rtos.h" 00003 00004 00005 DigitalOut myled(LED1); 00006 00007 int main() { 00008 while(true) 00009 { 00010 // Wait to avoid beeing stuck in loop 00011 myled = 1; // LED is ON 00012 Thread::wait(200); // 200 ms 00013 myled = 0; // LED is OFF 00014 Thread::wait(1000); // 1 sec 00015 } 00016 }
Generated on Thu Jul 14 2022 23:53:01 by
1.7.2