demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Revision:
28:bf62c46acb3e
Parent:
19:5ee34e60a31d
Child:
31:915f6cb7ffa5
--- a/Interpreter.h	Wed Apr 25 09:14:53 2018 +0000
+++ b/Interpreter.h	Wed Apr 25 13:25:13 2018 +0000
@@ -5,10 +5,11 @@
 #define INTERPRETER_H
     class Interpreter{
         private:
-            int* LED;
             int directionToNumber(char* direction);
+            Queue<int,8> *queue;
+            int LED[8];
         public:
-            Interpreter(int* LED);
+            Interpreter(Queue<int,8> *queue);
             void executeCommand(char* command);
     };
 #endif
\ No newline at end of file