17 lines
260 B
C
17 lines
260 B
C
|
#ifndef effect_static_H
|
||
|
#define effect_static_H
|
||
|
|
||
|
#include "Effect.h"
|
||
|
#include "my_fastled.h"
|
||
|
|
||
|
class StaticEffect : public Effect {
|
||
|
private:
|
||
|
CRGB color;
|
||
|
public:
|
||
|
StaticEffect(CRGB col);
|
||
|
boolean supports_window = true;
|
||
|
void loop();
|
||
|
};
|
||
|
|
||
|
#endif
|