TeensyPwm/TeensyPwm.h
2015-02-11 15:39:27 +01:00

30 lines
545 B
C

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