demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Committer:
KlaasGovaerts
Date:
Tue May 15 21:34:09 2018 +0000
Revision:
74:8c0068ed7c1e
Parent:
31:915f6cb7ffa5
Probeersel (werkt niet).

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 74:8c0068ed7c1e 3 #include "QueueMessage.h"
KlaasGovaerts 4:0d013b7e4dea 4
KlaasGovaerts 19:5ee34e60a31d 5 #ifndef INTERPRETER_H
KlaasGovaerts 19:5ee34e60a31d 6 #define INTERPRETER_H
KlaasGovaerts 19:5ee34e60a31d 7 class Interpreter{
KlaasGovaerts 4:0d013b7e4dea 8 private:
KlaasGovaerts 4:0d013b7e4dea 9 int directionToNumber(char* direction);
KlaasGovaerts 74:8c0068ed7c1e 10 Queue<QueueMessage,1>* queue;
KlaasGovaerts 28:bf62c46acb3e 11 int LED[8];
KlaasGovaerts 4:0d013b7e4dea 12 public:
KlaasGovaerts 74:8c0068ed7c1e 13 Interpreter(Queue<QueueMessage,1>* queue);
KlaasGovaerts 16:ffd311730575 14 void executeCommand(char* command);
KlaasGovaerts 4:0d013b7e4dea 15 };
KlaasGovaerts 4:0d013b7e4dea 16 #endif