Library to control NeoPixel strings of RGB leds

Dependencies:   PixelArray

Dependents:   NeoPixelI2cSlave NeoPixelI2cSlave

Revision:
1:f544810b6598
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Effects/effects_manager.h	Mon Nov 23 18:50:01 2015 +0000
@@ -0,0 +1,21 @@
+#pragma once
+
+#include "effect.h"
+
+namespace Effects {
+    
+    class EffectsManager {
+    
+        private:
+            Effect * effect;
+    
+        public:
+            EffectsManager(void);
+        
+        public:
+            void registerEffect(Effect * effect);
+            void unregisterEffect(void);
+            void execute(void);
+    };
+
+};
\ No newline at end of file