This commit is contained in:
Wolfgang Hottgenroth
2014-02-19 08:43:15 +01:00
commit 1ba4553e29
8 changed files with 1130 additions and 0 deletions

29
ThermometerPro.h Normal file
View File

@ -0,0 +1,29 @@
// Only modify this file to include
// - function definitions (prototypes)
// - include files
// - extern variable definitions
// In the appropriate section
#ifndef ThermometerPro_H_
#define ThermometerPro_H_
#include "Arduino.h"
//add your includes for the project ThermometerPro 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 ThermometerPro here
//Do not add code below this line
#endif /* ThermometerPro_H_ */