Added effect blur2d

This commit is contained in:
2019-09-25 06:26:27 +02:00
parent b5c99c320b
commit fa5f1c8816
3 changed files with 49 additions and 0 deletions

16
include/effect_blur2d.h Normal file
View File

@ -0,0 +1,16 @@
#pragma once
#include "prototypes.h"
#include "functions.h"
#include "Effect.h"
class Blur2DEffect : public Effect {
private:
Window* window = new Window(0, 0, LED_WIDTH, LED_HEIGHT-6);
public:
~Blur2DEffect();
boolean supports_window = true;
boolean can_be_shown_with_clock();
void loop();
};