IOT assignment 4 exercise 1

Dependencies:   mbed

main.cpp

Committer:
lmottola
Date:
2018-11-08
Revision:
0:d9ec23dd131e
Child:
1:2eeb35548179

File content as of revision 0:d9ec23dd131e:

#include "mbed.h"

Ticker toggle_led_ticker;

DigitalOut led1(LED1);

void toggle_led() {
    led1 = !led1;
}

int main() {
    // Init the ticker with the address of the function (toggle_led) to be attached and the interval (100 ms)
    toggle_led_ticker.attach(&toggle_led, 0.1);
    while (true) {
        // Do other things...
    }
}