modified project by other user

Dependencies:   mbed

Fork of __collab_test by InetrfaceProducts NXP

main.cpp

Committer:
nxp_ip
Date:
2012-06-09
Revision:
2:08342de867c7
Parent:
0:0e25a3e84b78
Child:
3:5d42ca9632ba

File content as of revision 2:08342de867c7:

#include "mbed.h"

DigitalOut myled(LED1);

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