pitrix/include/effect_static.h
Fabian Schlenz c5856a6f7a
Some checks failed
continuous-integration/drone/push Build is failing
Whitespace stuff. Tabs rule!
2019-06-07 06:24:16 +02:00

17 lines
256 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