Hello World program for the mbed NXP LPC11U24 beta

main.cpp

Committer:
chris
Date:
2011-10-21
Revision:
2:84e8c3967f5e
Parent:
1:340d210a0bef

File content as of revision 2:84e8c3967f5e:

#include "mbed.h"

DigitalOut myled(LED1);

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