test

Dependencies:   TextLCD mbed

Fork of teste by Masa Itou

main.cpp

Committer:
itoumasa
Date:
2013-05-14
Revision:
12:3cb3438cf9a7
Parent:
11:9232f529e832

File content as of revision 12:3cb3438cf9a7:

#include "mbed.h"

DigitalOut myled(LED1);

//test9

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