simple RGB led library

Dependents:   m3Dpi MQTT-Thermostat-example Final_project_Tran Final_project_Tran ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers FixedColorEffect.h Source File

FixedColorEffect.h

00001 #include "Effect.h"
00002 
00003 #ifndef FIXEDCOLOREFFECT_H
00004 #define FIXEDCOLOREFFECT_H
00005 
00006 class FixedColorEffect : public Effect
00007 {
00008 
00009     Color* color;
00010 
00011 public:
00012     FixedColorEffect(RGB* led, Color* color);
00013     virtual ~FixedColorEffect();
00014     virtual void run();
00015 };
00016 
00017 
00018 #endif