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 00003 // LPC810 pinout 00004 #define dp1 P0_5 // nRESET 00005 #define dp2 P0_4 // WAKEUP 00006 #define dp3 // SWCLK 00007 #define dp4 // SWDIO 00008 #define dp5 P0_1 // nISP 00009 #define dp6 // VIN 00010 #define dp7 // GND 00011 #define dp8 P0_0 00012 00013 DigitalOut myled(dp8); 00014 00015 int main() { 00016 while(1) { 00017 myled = 1; 00018 wait_ms(200); 00019 myled = 0; 00020 wait_ms(200); 00021 } 00022 } 00023
Generated on Mon Jul 18 2022 04:00:44 by
1.7.2