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 PoliceEffect.h Source File

PoliceEffect.h

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