ex

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

main.cpp

Committer:
tmboy
Date:
2017-07-18
Revision:
50:9ecaa144d1f3
Parent:
48:c7ee67edcf1d

File content as of revision 50:9ecaa144d1f3:

#include "mbed.h"

DigitalOut led1(LED1);

// main() runs in its own thread in the OS
int main() {
    while (true) {
        led1 = !led1;
        wait(2);
    }
}