- Arduino IDE (Serial Plotter) - Thank You!
- SerialPlot - Thank You!
- Processing IDE Plotter - Thank You!
But my balancing robot program still needs more diagnostics. The plots are a big help. But a plot is different from a text log. A log can be helpful too. Both a log and a plot provide useful information, but they are different and the information that each provides is unique. So, I am trying to do both. My goal is to be able to look at a graph to find a point to inspect and check the log to see what happened. The problem is that all of this is coming through one serial port. I can run one terminal program or one plotting program. But if I use a terminal program, there no plot. If I use a plotting program, it is text intolerant. If my program uses Println, SerialPlot shuts down. The Processing Listener is more robust in that it does not shutdown. But it also refuses to make the plot. If I had both the log and a plot, I could sync them with the program time [millis()].
Is there any way to do this?