Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "mbed.h"
00002 
00003 unsigned char i;
00004 
00005 BusOut leds(LED4, LED3, LED2, LED1);
00006 
00007 int main() {
00008     while(1) {
00009         leds = leds+1;
00010         wait(0.5);
00011     }
00012 }