17 lines
274 B
C
17 lines
274 B
C
|
#ifndef effect_bell_H
|
||
|
#define effect_bell_H
|
||
|
|
||
|
#include "Effect.h"
|
||
|
#include "functions.h"
|
||
|
|
||
|
class BellEffect : public Effect {
|
||
|
private:
|
||
|
CRGB color_on = CRGB(0xFFFF00);
|
||
|
CRGB color_off = CRGB(0x000000);
|
||
|
boolean invert = false;
|
||
|
public:
|
||
|
void loop();
|
||
|
};
|
||
|
|
||
|
#endif
|