pitrix/include/effect_bell.h

17 lines
270 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