Arduino Serial monitor

I use the Arduino serial monitor to read current sensor value + motor speed value & other

All my reading go from left To write as this exemple:

Amp: 1.47speedV:255Amp: 1.37speedV:255 etc.

Is it possible To read the value from top To bottom as follow?

Amp: 1.47 speedV: 255
Amp: 1.36 speedV: 255
Etc…

Thank you for your help
Steve

If you generate the data stream with your own code, just add the “cr” and “lf” (carriage return and line feed) symbols where needed. I’m not sure what ASCII code they are, but you’ll find out…

1 Like