demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Committer:
KlaasGovaerts
Date:
Wed Apr 18 13:37:35 2018 +0000
Revision:
19:5ee34e60a31d
Parent:
Receiver.h@17:04fb7968592a
Child:
28:bf62c46acb3e
Versie 15:37

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* LED;
KlaasGovaerts 4:0d013b7e4dea 9 int directionToNumber(char* direction);
KlaasGovaerts 4:0d013b7e4dea 10 public:
KlaasGovaerts 19:5ee34e60a31d 11 Interpreter(int* LED);
KlaasGovaerts 16:ffd311730575 12 void executeCommand(char* command);
KlaasGovaerts 4:0d013b7e4dea 13 };
KlaasGovaerts 4:0d013b7e4dea 14 #endif