demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Committer:
KlaasGovaerts
Date:
Wed Apr 25 13:25:13 2018 +0000
Revision:
28:bf62c46acb3e
Parent:
19:5ee34e60a31d
Child:
31:915f6cb7ffa5
Verzenden via queues

Who changed what in which revision?

UserRevisionLine numberNew contents of line
KlaasGovaerts 4:0d013b7e4dea 1 #include "rtos.h"
KlaasGovaerts 6:9903a0906a72 2 #include "TCPlistener.h"
KlaasGovaerts 4:0d013b7e4dea 3
KlaasGovaerts 19:5ee34e60a31d 4 #ifndef INTERPRETER_H
KlaasGovaerts 19:5ee34e60a31d 5 #define INTERPRETER_H
KlaasGovaerts 19:5ee34e60a31d 6 class Interpreter{
KlaasGovaerts 4:0d013b7e4dea 7 private:
KlaasGovaerts 4:0d013b7e4dea 8 int directionToNumber(char* direction);
KlaasGovaerts 28:bf62c46acb3e 9 Queue<int,8> *queue;
KlaasGovaerts 28:bf62c46acb3e 10 int LED[8];
KlaasGovaerts 4:0d013b7e4dea 11 public:
KlaasGovaerts 28:bf62c46acb3e 12 Interpreter(Queue<int,8> *queue);
KlaasGovaerts 16:ffd311730575 13 void executeCommand(char* command);
KlaasGovaerts 4:0d013b7e4dea 14 };
KlaasGovaerts 4:0d013b7e4dea 15 #endif