test

Dependencies:   TextLCD mbed

Fork of teste by Masa Itou

main.cpp

Committer:
itoumasa
Date:
2013-05-14
Revision:
2:acb3765befd7
Parent:
1:4ec1baa16254
Child:
4:2a721f24b120

File content as of revision 2:acb3765befd7:

#include "mbed.h"

DigitalOut myled(LED1);

//test

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