pitrix/include/effect_confetti.h

13 lines
198 B
C
Raw Normal View History

2019-05-30 09:12:40 +00:00
#ifndef effect_confetti_H
#define effect_confetti_H
#include "Effect.h"
#include "my_fastled.h"
class ConfettiEffect : public Effect {
void loop();
boolean can_be_shown_with_clock();
};
#endif