tintin tonton / Mbed 2 deprecated 01_LED_clignotant

Dependencies:   mbed

main.cpp

Committer:
tintintonton
Date:
2018-10-13
Revision:
1:f21ea337e961
Parent:
0:ffb15f241453

File content as of revision 1:f21ea337e961:

#include "mbed.h"

DigitalOut led(LED1);

int main() {
    while(1) {
        led = !led;
        wait(0.1);
    }
}