test

Fork of NewLoader by Terry Lung

main.cpp

Committer:
TYLG
Date:
2017-12-09
Revision:
0:890fbf136674
Child:
1:bdd416b8e5a8

File content as of revision 0:890fbf136674:

#include "mbed.h"

DigitalOut led1(LED1);

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