so far so good

This commit is contained in:
2019-04-25 16:20:01 +02:00
parent 04245e112c
commit 28b32656aa
8 changed files with 274 additions and 1 deletions

24
main.h Normal file
View File

@ -0,0 +1,24 @@
// Only modify this file to include
// - function definitions (prototypes)
// - include files
// - extern variable definitions
// In the appropriate section
#ifndef _Main_H_
#define _Main_H_
#include "Arduino.h"
//add your includes for the project RgbLed here
//end of add your includes here
//add your function definitions for the project RgbLed here
void mainSetup();
void mainLoop();
//Do not add code below this line
#endif /* _Main_H_ */