summaryrefslogtreecommitdiff
path: root/tool/mbed/mbed-sdk/libraries/tests/mbed/blinky/main.cpp
blob: 3e6293939f2be626d44a2d5c9c868554df6246b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "mbed.h"

DigitalOut myled(LED1);

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