mbed 2 template (for smaller projects, no RTOSt)

Dependencies:   mbed

main.cpp

Committer:
noutram
Date:
2018-09-18
Revision:
0:84f82da9789b

File content as of revision 0:84f82da9789b:

#include "mbed.h"

DigitalOut myled(LED1);

int main() {
    while(1) {
        myled = 1; // LED is ON
        wait(0.2); // 200 ms
        myled = 0; // LED is OFF
        wait(1.0); // 1 sec
    }
}