mbed-os-example-blinky for GR-LYCHEE

Dependencies:   mbed-os-lychee

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

main.cpp

Committer:
dkato
Date:
2018-02-02
Revision:
59:aae27286a788
Parent:
29:0b58d21e87d6

File content as of revision 59:aae27286a788:

#include "mbed.h"

DigitalOut led1(LED1);

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