pitrix/include/effect_tv_static.h

13 lines
303 B
C
Raw Normal View History

#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"; }
};