test

Dependencies:   TextLCD mbed

Fork of teste by Masa Itou

main.cpp

Committer:
itoumasa
Date:
2013-05-14
Revision:
13:41acfc5049e1
Parent:
9:f01ca84ce846
Child:
11:9232f529e832

File content as of revision 13:41acfc5049e1:

#include "mbed.h"

DigitalOut myled(LED1);

//test7

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