G.U.L.L.S. rebuilt to use PlatformIO
This commit is contained in:
19
include/StripAnimation.h
Normal file
19
include/StripAnimation.h
Normal 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
|
||||
Reference in New Issue
Block a user