pitrix/include/effect_bell.h

17 lines
270 B
C
Raw Normal View History

#ifndef effect_bell_H
#define effect_bell_H
#include "Effect.h"
#include "functions.h"
class BellEffect : public Effect {
2019-06-07 04:24:16 +00:00
private:
CRGB color_on = CRGB(0xFFFF00);
CRGB color_off = CRGB(0x000000);
boolean invert = false;
2019-06-07 04:24:16 +00:00
public:
void loop();
};
#endif