Esercitazione5_8

Dependencies:   mbed

main.cpp

Committer:
MDevolution
Date:
2016-10-31
Revision:
0:8705ea543a5a

File content as of revision 0:8705ea543a5a:

/* Program Example 8: Simple demo of "Ticker". Replicates behavior of first
led flashing program.
*/
#include "mbed.h"
void led_switch(void);
Ticker time_up; //define a Ticker, with name “time_up”
DigitalOut myled(LED1);
void led_switch() //the function that Ticker will call
{
    myled=!myled;
}

int main(){
    time_up.attach(&led_switch, 0.5); //initializes the ticker
    while(1) { //sit in a loop doing nothing, waiting for Ticker interrupt
    }
}