demo versie 16/05

Dependencies:   EthernetInterface mbed-rto mbed

Fork of ProjectVLC by Klaas Govaerts

Interpreter.h

Committer:
KlaasGovaerts
Date:
2018-04-25
Revision:
31:915f6cb7ffa5
Parent:
28:bf62c46acb3e
Child:
35:efdbfccf2678
Child:
71:5e8ba1357442
Child:
74:8c0068ed7c1e
Child:
75:31c15986b85e

File content as of revision 31:915f6cb7ffa5:

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

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