Lab_interaccio/2018/LLAC-RGBW-varios/FASTLED/Referencias-Fastled/FastLEDfx-master/Effect.cpp

20 lines
250 B
C++
Raw Permalink Normal View History

2025-02-25 21:29:42 +01:00
/*
* EffectBase.cpp
*
* Created on: 05.01.2018
* Author: sezep_000
*/
#include "FastLEDfx.h"
Effect::Effect() {
this->animator = nullptr;
}
Effect::~Effect() { }
void Effect::begin(Animator* animator) {
this->animator = animator;
}