G.U.L.L.S. rebuilt to use PlatformIO

This commit is contained in:
2024-07-01 19:18:45 -04:00
commit f934849576
55 changed files with 4082 additions and 0 deletions

19
include/StripAnimation.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef STRIPANIMATION_H
#define STRIPANIMATION_H
#include "AnimationBase.h"
#include "LEDHAL.h"
class StripAnimation : public AnimationBase {
public:
StripAnimation(LEDHAL* _strip, char* _refName, long _updateTime) :
AnimationBase(_refName, _updateTime), strip(_strip) {}
virtual ~StripAnimation() {}
LEDHAL* getStrip() { return strip; }
protected:
LEDHAL*
strip;
};
#endif