test

Dependencies:   TextLCD mbed

Fork of teste by Masa Itou

main.cpp

Committer:
itoumasa
Date:
2013-05-14
Revision:
5:df408dba9893
Parent:
4:2a721f24b120
Child:
6:906a901454d9

File content as of revision 5:df408dba9893:

#include "mbed.h"

DigitalOut myled(LED1);

//test2

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