16 lines
266 B
C++
16 lines
266 B
C++
#pragma once
|
|
|
|
#include "Effect.h"
|
|
#include "my_fastled.h"
|
|
|
|
class StaticEffect : public Effect {
|
|
private:
|
|
CRGB color;
|
|
public:
|
|
StaticEffect(CRGB col);
|
|
boolean supports_window = true;
|
|
void loop();
|
|
String get_name() override { return "static"; }
|
|
};
|
|
|