New Effect: DvdEffect

This commit is contained in:
2019-06-19 22:17:39 +02:00
parent f1821b0b85
commit e897c6bdcd
2 changed files with 54 additions and 0 deletions

17
include/effect_dvd.h Normal file
View File

@ -0,0 +1,17 @@
#pragma once
#include "Effect.h"
class DvdEffect : public Effect {
private:
Window* window = new Window(0, 0, LED_WIDTH, LED_HEIGHT-6);
uint8_t _x = 0;
uint8_t _y = 0;
int8_t _x_dir = 1;
int8_t _y_dir = 1;
CRGB _color;
public:
DvdEffect();
~DvdEffect();
void loop() override;
bool can_be_shown_with_clock() override;
};