initial, copied from rgbled

This commit is contained in:
2020-07-26 22:48:31 +02:00
commit 351dc80315
8 changed files with 408 additions and 0 deletions

18
sketch/sketch.ino Normal file
View File

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