rgbled/sketch/sketch.ino

19 lines
314 B
Arduino
Raw Normal View History

2019-04-25 16:47:53 +02:00
// Do not remove the include below
#include "rgbled.h"
2019-04-05 19:59:07 +02:00
2019-04-25 16:47:53 +02:00
#include <main.h>
2019-04-05 19:59:07 +02:00
2019-04-25 16:47:53 +02:00
//The setup function is called once at startup of the sketch
void setup()
{
// Add your initialization code here
mainSetup();
2019-04-05 19:59:07 +02:00
}
2019-04-25 16:47:53 +02:00
// The loop function is called in an endless loop
void loop()
{
//Add your repeated code here
mainLoop();
2019-04-05 19:59:07 +02:00
}