Splitting the code into single files is done. \o/

This commit is contained in:
2019-05-30 00:49:54 +02:00
parent 76802ffa78
commit 2f58fd14d0
45 changed files with 1142 additions and 834 deletions

13
src/effect_static.cpp Normal file
View File

@ -0,0 +1,13 @@
#include "effect_static.h"
#include "functions.h"
#include "my_fastled.h"
StaticEffect::StaticEffect(CRGB col) {
color = col;
}
void StaticEffect::loop() {
EVERY_N_SECONDS(1) {
clear(window, color);
}
}