pitrix/include/effect_clock.h

18 lines
311 B
C++

#ifndef effect_clock_H
#define effect_clock_H
#include "Effect.h"
#include "prototypes.h"
#include <FastLED.h>
class ClockEffect : public Effect {
private:
Window window = {0, LED_HEIGHT - 6, LED_WIDTH, 6};
public:
void loop();
void loop(boolean invert, CRGB fg_color, CRGB bg_color);
};
#endif