rgbled/sketch/rgbled.h

23 lines
423 B
C
Raw Permalink Normal View History

2019-04-05 19:59:07 +02:00
// Only modify this file to include
// - function definitions (prototypes)
// - include files
// - extern variable definitions
// In the appropriate section
2019-04-25 16:47:53 +02:00
#ifndef _rgbled_H_
#define _rgbled_H_
2019-04-05 19:59:07 +02:00
#include "Arduino.h"
2019-04-25 16:47:53 +02:00
//add your includes for the project rgbled here
2019-04-05 19:59:07 +02:00
//end of add your includes here
2019-04-25 16:47:53 +02:00
//add your function definitions for the project rgbled here
2019-04-05 19:59:07 +02:00
//Do not add code below this line
2019-04-25 16:47:53 +02:00
#endif /* _rgbled_H_ */