We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Welcome to the Arduino-logging-library wiki!
Putting it here as issue, as issue creation is not allowed here:
void setup() { Log.Init(LOGLEVEL, 115200L); char c = 72;//'H'; //both outputs same Log.Debug(" %d %c %c ", c, c, 'H'); Serial.println(c); while (1); }
output : 72 72 72 H expectation : 72 H H H ??
output : 72 72 72 H
expectation : 72 H H H