Skip to content
Rahul edited this page Feb 19, 2017 · 2 revisions

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 ??

Clone this wiki locally