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 "platform/mbed_thread.h" 00003 @ last tested 12/4/2022 00004 #define SleepTime 200 00005 00006 DigitalOut led1(LED1); 00007 00008 int main() { 00009 while(1) { 00010 led1 = 1; 00011 thread_sleep_for(SleepTime); 00012 led1 = 0; 00013 thread_sleep_for(SleepTime); 00014 } 00015 }
Generated on Sun Dec 4 2022 20:56:23 by
1.7.2