pitrix/include/effect_pixelclock.h
Fabian Schlenz 3edbf6b252
All checks were successful
continuous-integration/drone/push Build is passing
Added PicelClockEffect.
2019-06-15 14:18:35 +02:00

17 lines
263 B
C++

#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();
};