pitrix/include/effect_tv_static.h
Fabian Schlenz 359b7a7826
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Merge branch 'master' of https://git.schle.nz/fabian/pitrix; added new effect tv_static.
2019-10-10 06:50:09 +02:00

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