Overloading documentation
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@ -53,11 +53,8 @@ bool CommandHandler::parseJSON(const char *cmd)
|
||||
|
||||
if (strcmp("offset", command) == 0)
|
||||
{
|
||||
int x = json["x"];
|
||||
int y = json["y"];
|
||||
debugSerial("offset unhandled");
|
||||
//this->display->setOffset(x, y);
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
@ -44,9 +44,12 @@ public:
|
||||
|
||||
private:
|
||||
/**
|
||||
* Internal helpers for printing debug strings
|
||||
* Internal helper for printing debug strings
|
||||
*/
|
||||
void debugSerial(const char *text);
|
||||
/**
|
||||
* @overload
|
||||
*/
|
||||
void debugSerial(const char *command, const char *text);
|
||||
/**
|
||||
* Display instance
|
||||
|
Reference in New Issue
Block a user