change structure continued

This commit is contained in:
Wolfgang Hottgenroth
2019-04-30 11:14:25 +00:00
parent 7e1f846dc5
commit e70087427e
37 changed files with 4975 additions and 0 deletions

18
sketch/sketch.ino Normal file
View File

@ -0,0 +1,18 @@
// Do not remove the include below
#include "rgbled.h"
#include <main.h>
//The setup function is called once at startup of the sketch
void setup()
{
// Add your initialization code here
mainSetup();
}
// The loop function is called in an endless loop
void loop()
{
//Add your repeated code here
mainLoop();
}