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.
blinking_leds.cpp
00001 #include "mbed.h" 00002 DigitalOut led1(p5); 00003 DigitalOut led2(p6); 00004 DigitalOut led3(p7); 00005 int main(void) 00006 { 00007 led1=1; 00008 led2=1; 00009 led3=1; 00010 for(;;) 00011 { 00012 led1=0; 00013 led2=1; 00014 led3=0; 00015 wait(3); // wait 3 seconds 00016 led1=1; 00017 led2=0; 00018 led3=1; 00019 wait(3); // wait .5 seconds 00020 } 00021 }
Generated on Wed Jul 27 2022 03:38:40 by
1.7.2