ex

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

main.cpp

Committer:
tmboy
Date:
2017-07-17
Revision:
41:a067e5c6e281
Parent:
29:0b58d21e87d6
Child:
42:025e43539b63

File content as of revision 41:a067e5c6e281:

#include "mbed.h"

DigitalOut led1(LED1);

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