This commit is contained in:
hg
2014-11-02 21:37:29 +01:00
commit 233e1dc2a1
10 changed files with 651 additions and 0 deletions

29
ModbusThermometer.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 _ModbusThermometer_H_
#define _ModbusThermometer_H_
#include "Arduino.h"
//add your includes for the project ModbusThermometer 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 ModbusThermometer here
//Do not add code below this line
#endif /* _ModbusThermometer_H_ */