taunoe / tauno-serial-plotter

Serial Plotter for Arduino and other embedded devices.
GNU General Public License v3.0
84 stars 6 forks source link

[Feature Request] Subplots and labels #54

Open Gillte opened 2 years ago

Gillte commented 2 years ago

Hello, thank you very much for coding this. I have a suggestion for a new feature. The possibility to add subplots and label them. Do you think this is feasible?

taunoe commented 11 months ago

Good news. Now it displays labels on the graph. Example Arduino code:

Serial.print("Label1");
Serial.print(data1);
Serial.print("Label2");
Serial.print(data2);
Serial.println();