##// END OF EJS Templates
Se siguieron las recomendaciones del Ing. Miguel Urco. Se ruteó de nuevo la parte analógica del circuito de adquicision
Se siguieron las recomendaciones del Ing. Miguel Urco. Se ruteó de nuevo la parte analógica del circuito de adquicision

File last commit:

r138:139
r167:168
Show More
timeEngined.h
29 lines | 555 B | text/x-c | CLexer
// Only modify this file to include
// - function definitions (prototypes)
// - include files
// - extern variable definitions
// In the appropriate section
#ifndef _timeEngined_H_
#define _timeEngined_H_
#include "Arduino.h"
//add your includes for the project timeEngined here
//end of add your includes here
#ifdef __cplusplus
extern "C" {
#endif
void loop();
void setup();
#ifdef __cplusplus
} // extern "C"
#endif
//add your function definitions for the project timeEngined here
//Do not add code below this line
#endif /* _timeEngined_H_ */