Hi, arduino software is has serial monitor feature. Can i display serial data just in one row? Because if my code is like this:
Serial.print(pitchGyro);
Serial.print("\t");
Serial.print(pitchAccel);
Serial.print("\t");
Serial.print(pitchPrediction);
Serial.print("\t");
Serial.print(rollGyro);
Serial.print("\t");
Serial.print(rollAccel);
Serial.print("\t");
Serial.print(rollPrediction);
Serial.print("\n");
Every serial data will displayed in new row, how if i want to display serial data just in one row? So, the change of data value can be observed in a single row.
Thank You..