test

Dependencies:   mbed

Fork of buririnky by Katsuya Matsuura

main.cpp

Committer:
kasistorange
Date:
2018-09-26
Revision:
1:f5ea94d1e02b
Parent:
0:67a767417d18

File content as of revision 1:f5ea94d1e02b:

#include "mbed.h"

DigitalOut myled(LED1);

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