13 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| #include "Effect.h"
 | |
| 
 | |
| class TvStaticEffect : public Effect {
 | |
| private:
 | |
| 	Window* _window = &Window::window_with_clock;
 | |
| public:
 | |
| 	~TvStaticEffect();
 | |
| 	void loop(uint16_t ms) override;
 | |
| 	bool can_be_shown_with_clock() override;
 | |
| 	String get_name() override { return "tv_static"; }
 | |
| };
 |