minor changes, added gpio command - #445

This commit is contained in:
proddy
2020-08-04 13:34:16 +02:00
parent 725d63a518
commit 939debdc0b
8 changed files with 65 additions and 33 deletions

View File

@@ -58,9 +58,9 @@ class Helpers {
static std::string toLower(std::string const & s);
static bool value2number(const char * v, int value);
static bool value2float(const char * v, float value);
static bool value2bool(const char * v, uint8_t value);
static bool value2number(const char * v, int & value);
static bool value2float(const char * v, float & value);
static bool value2bool(const char * v, bool & value);
static bool value2string(const char * v, std::string & value);
};