2019-05-29 22:49:54 +00:00
|
|
|
#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:
|
2019-05-29 22:49:54 +00:00
|
|
|
CRGB color;
|
2019-06-07 04:24:16 +00:00
|
|
|
public:
|
2019-05-29 22:49:54 +00:00
|
|
|
StaticEffect(CRGB col);
|
|
|
|
boolean supports_window = true;
|
|
|
|
void loop();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|