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/MatrixAnimation.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef MATRIXANIMATION_H
#define MATRIXANIMATION_H
#include "AnimationBase.h"
#include "LEDHAL2D.h"
class MatrixAnimation : public AnimationBase {
public:
MatrixAnimation(LEDHAL2D* _matrix, char* _refName, long _updateTime) :
AnimationBase(_refName, _updateTime), matrix(_matrix) {}
virtual ~MatrixAnimation() {}
LEDHAL2D* getMatrix() { return matrix; }
protected:
LEDHAL2D*
matrix;
};
#endif