pitrix/include/effect_bell.h
Fabian Schlenz c5856a6f7a
Some checks failed
continuous-integration/drone/push Build is failing
Whitespace stuff. Tabs rule!
2019-06-07 06:24:16 +02:00

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