Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed EthernetInterface mbed-rto
Interpreter.h
- Committer:
- KlaasGovaerts
- Date:
- 2018-05-15
- Revision:
- 71:5e8ba1357442
- Parent:
- 30:915f6cb7ffa5
File content as of revision 71:5e8ba1357442:
#include "rtos.h"
#include "TCPlistener.h"
#ifndef INTERPRETER_H
#define INTERPRETER_H
class Interpreter{
private:
int directionToNumber(char* direction);
Queue<int,1>* queue;
int LED[8];
public:
Interpreter(Queue<int,1>* queue);
void executeCommand(char* command);
};
#endif
