Hello,
I am using the Serial Plotter in Arduino IDE 1.8.10 and this is the piece of code that i'm using to display 2 graphs.
Serial.print("speeds_filter: ");
Serial.print(speeds_filter);
Serial.print(", ");
Serial.print("speeds: ");
Serial.println(speeds);
But the labels and color coding seem to broken... At the top-left corner of the graph, there are 4 color boxes? Which color box corresponds to which label? And why are there 4 color boxes when there should be only 2?
If this is a bug, should i revert back to Arduino IDE 1.8.9?
Also, is it possible to change or even better, choose the colours of the graphs?
Edit: I fixed it by trial and error. I removed the space after the label text.
Serial.print("speeds_filter:");
Serial.print(speeds_filter);
Serial.print(", ");
Serial.print("speeds:");
Serial.println(speeds);