test

Dependencies:   TextLCD mbed

Fork of teste by Masa Itou

main.cpp

Committer:
itoumasa
Date:
2013-05-14
Revision:
4:2a721f24b120
Parent:
3:35a0cc4b2510
Child:
5:df408dba9893

File content as of revision 4:2a721f24b120:

#include "mbed.h"

DigitalOut myled(LED1);

//test1

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