LED helloworld

Dependencies:   mbed

main.cpp

Committer:
kirthigaannamalai
Date:
2015-01-14
Revision:
0:9617aaae7943

File content as of revision 0:9617aaae7943:

#include "mbed.h"

DigitalOut myled(LED1);
DigitalOut myled2(LED2);

int main() {
    while(1) {
        myled = 1;
        myled2=0;
        wait(0.5);
        myled = 0;
        myled2=1;
        wait(0.5);
    }
}