#include "CmdSerial.h"
CmdSerial cmd;
int testInt = 0;
void setup() {
  Serial.begin(9600);
  Serial.println("Type  `help` and hit Enter in Terminal to get list of available commands...");
}
void loop() {
  //
  // Listen for income commands.
  cmd.listen();
  //
  // Example how to change int from Serial input.
  if (cmd.set(F("test"), testInt) ) {
    //
    // The if is true when value is set.
    Serial.println(F("Test is set in the sketch!"));
  }
  //
  // Example how to check what is the value of testInt.
  if (cmd.show(F("test"),F("This command is just for test"))) {
    cmd.print(F("Test value:"), testInt);
  }
  cmd.set(F("foo"),testInt,F("Some help block for `foo` "));
  if(cmd.show(F("foo"),F("This is foo command just for test"))){
  }
}