pitrix/include/effect_clock.h

16 lines
304 B
C
Raw Normal View History

#pragma once
#include "Effect.h"
#include "prototypes.h"
#include "my_fastled.h"
#include "Window.h"
class ClockEffect : public Effect {
2019-06-07 04:24:16 +00:00
private:
Window* window = new Window(0, LED_HEIGHT - 6, LED_WIDTH, 6);
2019-06-07 04:24:16 +00:00
public:
void loop();
void loop(boolean invert, CRGB fg_color, CRGB bg_color);
};