New Effect: RandomConfettiEffect

This commit is contained in:
2019-06-19 22:17:10 +02:00
parent 41af01ee0b
commit f1821b0b85
2 changed files with 17 additions and 1 deletions

View File

@ -5,8 +5,16 @@
#include "my_fastled.h"
class ConfettiEffect : public Effect {
protected:
virtual CRGB _getColor();
public:
void loop();
boolean can_be_shown_with_clock();
};
class RandomConfettiEffect : public ConfettiEffect {
protected:
CRGB _getColor() override;
};
#endif