23 lines
438 B
C
23 lines
438 B
C
// Only modify this file to include
|
|
// - function definitions (prototypes)
|
|
// - include files
|
|
// - extern variable definitions
|
|
// In the appropriate section
|
|
|
|
#ifndef _WifiRelay_H_
|
|
#define _WifiRelay_H_
|
|
#include "Arduino.h"
|
|
//add your includes for the project WifiRelay here
|
|
|
|
|
|
//end of add your includes here
|
|
|
|
|
|
//add your function definitions for the project WifiRelay here
|
|
|
|
|
|
|
|
|
|
//Do not add code below this line
|
|
#endif /* _WifiRelay_H_ */
|