more files moved and adjusted to new structure
This commit is contained in:
21
sketch/sketch.ino
Normal file
21
sketch/sketch.ino
Normal 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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user