Added effect diamond.

This commit is contained in:
2020-04-30 06:51:02 +02:00
parent caa86551a0
commit 075823220a
3 changed files with 28 additions and 1 deletions

11
include/effect_diamond.h Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include "Effect.h"
class DiamondEffect : public Effect {
private:
Window* window = &Window::window_with_clock;
public:
void loop(uint16_t ms) override;
bool can_be_shown_with_clock() override;
String get_name() override { return "diamond"; }
};