Files
Arduino/TEST/TEST.h
Jérôme Delacotte 7b30d6e298 first commit
2025-03-06 11:15:32 +01:00

30 lines
520 B
C
Executable File

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