more files moved and adjusted to new structure

This commit is contained in:
2019-11-18 16:19:15 +01:00
parent 3fcd00a8a9
commit 44fc14085e
8 changed files with 57 additions and 185 deletions

21
sketch/sketch.ino Normal file
View File

@ -0,0 +1,21 @@
// Do not remove the include below
// #include "rgbled.h"
#include "Arduino.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();
}