Sille Van Landschoot / RGB-fun

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

Revision:
3:edc6e64bfc65
Child:
4:a7a26506c62f
diff -r ed46f45e1d66 -r edc6e64bfc65 effects/FixedColorEffect.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/effects/FixedColorEffect.h	Wed Oct 21 17:12:10 2015 +0000
@@ -0,0 +1,16 @@
+#include "Effect.h"
+
+#ifndef FIXEDCOLOREFFECT_H
+#define FIXEDCOLOREFFECT_H
+
+class FixedColorEffect : public Effect{
+        
+    Color* color;
+    
+    public:
+    FixedColorEffect(RGB* led, Color* color);
+    virtual void run();
+};
+
+
+#endif
\ No newline at end of file