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 // n-bed test: Blink LPC11U35 00002 00003 #include "mbed.h" 00004 00005 DigitalOut myled(LED1); 00006 DigitalOut myled2(LED2); 00007 DigitalOut myled3(p15); 00008 00009 int main() { 00010 while(1) { 00011 myled = 1; 00012 myled2 = 1; 00013 myled3 = 1; 00014 wait(0.25); 00015 myled = 0; 00016 myled2 = 0; 00017 myled3 = 0; 00018 wait(0.25); 00019 } 00020 }
Generated on Thu Jul 14 2022 06:03:37 by
1.7.2