mbed demo / Mbed OS Blinky_Tests

Dependencies:   Blinky

Fork of Blinky_Tests by Sarah Marsh

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 #include "Blinky.h"
00002 
00003 int main(void){
00004     Blinky blinker(LED1, 500);
00005     blinker.start();
00006     Thread::wait(5000);
00007     blinker.stop();
00008     printf("Times blinked: %f",blinker.times_blinked());
00009 }
00010