Library for led
RGB LED library
users/gimohd/code/LED/
[Not found]
lib/PoliceLight.h
- Committer:
- gimohd
- Date:
- 2015-12-10
- Revision:
- 4:dc9ce1a68604
- Parent:
- 0:5368b27ca9d0
File content as of revision 4:dc9ce1a68604:
#ifndef POLICELIGHT_H #define POLICELIGHT_H #include "Effect.h" #include "PoliceLight.h" #include "RGB.h" #include "Color.h" class PoliceLight : public Effect { public: /** Creates an effect named PoliceLight * * @param led An instance of the led class */ PoliceLight(RGB* led); /** Runs the policelight effect */ void run(); }; #endif