test

Dependencies:   TextLCD mbed

main.cpp

Committer:
itoumasa
Date:
2013-05-16
Revision:
0:c2987f191a7d

File content as of revision 0:c2987f191a7d:

#include "mbed.h"

DigitalOut myled(LED1);

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