18 lines
315 B
C++
18 lines
315 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
|