test

Dependencies:   TextLCD mbed

Fork of teste by Masa Itou

main.cpp

Committer:
itoumasa
Date:
2013-05-14
Revision:
8:9556b25f7041
Parent:
7:d638046dc384

File content as of revision 8:9556b25f7041:

#include "mbed.h"

DigitalOut myled(LED1);

//test5

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