Fabian Schlenz
359b7a7826
Some checks reported errors
continuous-integration/drone/push Build encountered an error
13 lines
303 B
C++
13 lines
303 B
C++
#pragma once
|
|
#include "Effect.h"
|
|
|
|
class TvStaticEffect : public Effect {
|
|
private:
|
|
Window* _window = new Window(0, 0, LED_WIDTH, LED_HEIGHT-6);
|
|
public:
|
|
~TvStaticEffect();
|
|
void loop(uint16_t ms) override;
|
|
bool can_be_shown_with_clock() override;
|
|
String get_name() override { return "tv_static"; }
|
|
};
|