Compare commits
No commits in common. "d76e088c37479393d32c12118d5f6e454bd40f70" and "ae997ef8020419f6323d61a02213d76b21be4d53" have entirely different histories.
d76e088c37
...
ae997ef802
@ -3,7 +3,7 @@
|
|||||||
#include "Effect.h"
|
#include "Effect.h"
|
||||||
#include "prototypes.h"
|
#include "prototypes.h"
|
||||||
#include "my_fastled.h"
|
#include "my_fastled.h"
|
||||||
#include "../Animation.h"
|
#include "Animation.h"
|
||||||
|
|
||||||
class AnimationEffect : public Effect {
|
class AnimationEffect : public Effect {
|
||||||
private:
|
private:
|
||||||
|
@ -19,3 +19,12 @@ public:
|
|||||||
virtual void loop(uint16_t ms);
|
virtual void loop(uint16_t ms);
|
||||||
String get_name() override { return "big_clock"; }
|
String get_name() override { return "big_clock"; }
|
||||||
};
|
};
|
||||||
|
<<<<<<< HEAD:include/effects/big_clock.h
|
||||||
|
=======
|
||||||
|
|
||||||
|
class NightClockEffect : public BigClockEffect {
|
||||||
|
private:
|
||||||
|
void _draw_border_pixel(accum88 pos, CRGB* color) { };
|
||||||
|
CRGB _get_color_font() { return CRGB(0x220000); }
|
||||||
|
};
|
||||||
|
>>>>>>> ecf5998510bf1f8230d070cebccb4c89f95ce856:include/effect_big_clock.h
|
||||||
|
Loading…
Reference in New Issue
Block a user