First published 16 Jan 2011, with 4 revisions since. Last update: 01 Jan 2012. View history
Last change message: Updated mbed library to use newer version including LPC11U24
« Back to documentation index
00001 #include "mbed.h" 00002 00003 DigitalOut myled(LED1); 00004 00005 int main() { 00006 while(1) { 00007 myled = 1; 00008 wait(0.2); 00009 myled = 0; 00010 wait(0.2); 00011 } 00012 }