1
0

Doxygen code comments included
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
2021-10-28 14:44:20 +00:00
parent 2b8b4a048a
commit 3b09803b3a
9 changed files with 103 additions and 17 deletions

View File

@ -44,7 +44,7 @@ bool CommandHandler::parse(const char *cmd)
{
int x = doc["x"];
int y = doc["y"];
this->display->setOffset(x, y);
//this->display->setOffset(x, y);
}
return true;

View File

@ -2,6 +2,9 @@
#define COMMANDHANDLER_H
#include "DisplayProxy.h"
/**
* Parse a JSON command and convert it into a display command
*/
class CommandHandler
{
public: