2019-05-29 22:49:54 +00:00
|
|
|
#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:
|
2019-05-29 22:49:54 +00:00
|
|
|
CRGB color_on = CRGB(0xFFFF00);
|
|
|
|
CRGB color_off = CRGB(0x000000);
|
|
|
|
boolean invert = false;
|
2019-06-07 04:24:16 +00:00
|
|
|
public:
|
2019-05-29 22:49:54 +00:00
|
|
|
void loop();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|