pepe

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers KeepAlive.cpp Source File

KeepAlive.cpp

00001 #include "alarma.h"
00002 #include "mbed.h"
00003 
00004 void KeepAlive(void){
00005     Alive = 1;
00006     wait(0.05);
00007     Alive = 0;
00008     wait(0.15);
00009     return;
00010 }