1
0
MAX7456JSON/lib/CommandHandler/CommandHandler.h
Jens True 2b8b4a048a
All checks were successful
continuous-integration/drone Build is passing
Modernizing code. Bit more OO design than previously.
2021-10-28 11:50:57 +00:00

16 lines
293 B
C++

#ifndef COMMANDHANDLER_H
#define COMMANDHANDLER_H
#include "DisplayProxy.h"
class CommandHandler
{
public:
explicit CommandHandler(DisplayProxy *display);
bool parse(const char *cmd);
private:
void debugWrite(int x, int y, const char *text);
DisplayProxy *display;
};
#endif