pitrix/include/effect_static.h

17 lines
256 B
C
Raw Normal View History

#ifndef effect_static_H
#define effect_static_H
#include "Effect.h"
#include "my_fastled.h"
class StaticEffect : public Effect {
2019-06-07 04:24:16 +00:00
private:
CRGB color;
2019-06-07 04:24:16 +00:00
public:
StaticEffect(CRGB col);
boolean supports_window = true;
void loop();
};
#endif