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.
Fork of mbed_blinky by
main.cpp
00001 #include "mbed.h" 00002 00003 DigitalOut myled1(LED1); 00004 DigitalOut myled2(LED2); 00005 DigitalOut myled3(LED3); 00006 00007 int main() { 00008 while(1) { 00009 myled1 = 1; 00010 myled2 = 1; 00011 myled3 = 1; 00012 wait(0.1); 00013 myled1 = 0; 00014 myled2 = 0; 00015 myled3 = 0; 00016 wait(0.1); 00017 } 00018 }
Generated on Sun Jul 17 2022 20:12:38 by
1.7.2
