Compare commits

...

2 Commits

Author SHA1 Message Date
Fabian Schlenz d76e088c37 Remove left-over merge stuff in efects/big_clock.h
continuous-integration/drone Build was killed Details
2020-11-06 23:42:04 +01:00
Fabian Schlenz c9825c8f9b Give path in effects/animation.h to also work on case-insensitive file systems. 2020-11-06 23:41:38 +01:00
2 changed files with 2 additions and 11 deletions

View File

@ -3,7 +3,7 @@
#include "Effect.h"
#include "prototypes.h"
#include "my_fastled.h"
#include "Animation.h"
#include "../Animation.h"
class AnimationEffect : public Effect {
private:

View File

@ -18,13 +18,4 @@ protected:
public:
virtual void loop(uint16_t ms);
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
};