LED hello world

Dependencies:   mbed

main.cpp

Committer:
kirthigaannamalai
Date:
2015-01-14
Revision:
1:3bfb0027720a
Parent:
0:140fb5321fa8

File content as of revision 1:3bfb0027720a:

#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);
    }
}