demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Interpreter.h

Committer:
KlaasGovaerts
Date:
2018-05-15
Revision:
74:8c0068ed7c1e
Parent:
31:915f6cb7ffa5

File content as of revision 74:8c0068ed7c1e:

#include "rtos.h"
#include "TCPlistener.h"
#include "QueueMessage.h"

#ifndef INTERPRETER_H
#define INTERPRETER_H
    class Interpreter{
        private:
            int directionToNumber(char* direction);
            Queue<QueueMessage,1>* queue;
            int LED[8];
        public:
            Interpreter(Queue<QueueMessage,1>* queue);
            void executeCommand(char* command);
    };
#endif