pitrix/include/effect_static.h

16 lines
277 B
C
Raw Normal View History

#pragma once
#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(uint16_t ms);
String get_name() override { return "static"; }
};