ex

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

main.cpp

Committer:
TMBOY
Date:
2017-07-18
Revision:
43:294225846244
Parent:
42:025e43539b63
Child:
46:183cfc59d4e4

File content as of revision 43:294225846244:

#include "mbed.h"

DigitalOut led1(LED1);

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