pitrix/include/effect_clock.h

18 lines
311 B
C
Raw Normal View History

#ifndef effect_clock_H
#define effect_clock_H
#include "Effect.h"
#include "prototypes.h"
#include <FastLED.h>
class ClockEffect : public Effect {
2019-06-07 04:24:16 +00:00
private:
Window 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);
};
#endif