2019-10-10 04:50:09 +00:00
|
|
|
#pragma once
|
|
|
|
#include "Effect.h"
|
|
|
|
|
|
|
|
class TvStaticEffect : public Effect {
|
|
|
|
private:
|
2020-04-30 04:41:30 +00:00
|
|
|
Window* _window = &Window::window_with_clock;
|
2019-10-10 04:50:09 +00:00
|
|
|
public:
|
|
|
|
~TvStaticEffect();
|
|
|
|
void loop(uint16_t ms) override;
|
|
|
|
bool can_be_shown_with_clock() override;
|
|
|
|
String get_name() override { return "tv_static"; }
|
|
|
|
};
|