demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Revision:
19:5ee34e60a31d
Parent:
17:04fb7968592a
Child:
28:bf62c46acb3e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Interpreter.h	Wed Apr 18 13:37:35 2018 +0000
@@ -0,0 +1,14 @@
+#include "rtos.h"
+#include "TCPlistener.h"
+
+#ifndef INTERPRETER_H
+#define INTERPRETER_H
+    class Interpreter{
+        private:
+            int* LED;
+            int directionToNumber(char* direction);
+        public:
+            Interpreter(int* LED);
+            void executeCommand(char* command);
+    };
+#endif
\ No newline at end of file