published

Dependencies:   mbed

Fork of burinko by Katsuya Matsuura

main.cpp

Committer:
kasistorange
Date:
2018-09-26
Revision:
0:9238e6efa08d

File content as of revision 0:9238e6efa08d:

#include "mbed.h"

DigitalOut myled(LED1);

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