Added PicelClockEffect.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
16
include/effect_pixelclock.h
Normal file
16
include/effect_pixelclock.h
Normal file
@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include "Effect.h"
|
||||
#include "my_fastled.h"
|
||||
|
||||
class PixelClockEffect : public Effect {
|
||||
private:
|
||||
CRGB* _color_seconds;
|
||||
CRGB* _color_minutes;
|
||||
public:
|
||||
PixelClockEffect();
|
||||
void start();
|
||||
void stop();
|
||||
void loop();
|
||||
bool can_be_shown_with_clock();
|
||||
};
|
Reference in New Issue
Block a user