Basic example showing how to blink the LED present on the board.

Dependencies:   mbed

main.cpp

Committer:
arostm
Date:
2017-06-07
Revision:
1:cdac3355cada
Parent:
0:455505e7e985

File content as of revision 1:cdac3355cada:

#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
    }
}