This commit is contained in:
Wolfgang Hottgenroth
2015-05-02 00:14:40 +02:00
commit 40e18d4172
40 changed files with 6547 additions and 0 deletions

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