collab test project

Dependencies:   mbed

main.cpp

Committer:
nxp_ip
Date:
2012-06-09
Revision:
7:3c9ab61912f1
Parent:
6:e7484c826f75

File content as of revision 7:3c9ab61912f1:

#include "mbed.h"

DigitalOut myled(LED1);

//  test test

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