RealtimePlotter icon indicating copy to clipboard operation
RealtimePlotter copied to clipboard

Plots live data from a serial port. Multiplatform and written in Processing.

Results 4 RealtimePlotter issues
Sort by recently updated
recently updated
newest added

Hi, thanks for the nice program. How about using it for plotting live data streamed through a socket connection? The socket connection is between python and processing IDE. Would you...

Hello Sebastian, Thanks for the great serial plotting utility. I've been using it on a project and tweaked your BasicRealTimePlotter example a bit for my own use. https://github.com/digamesystems/DigameSerialPlotter Mostly, it...

ControlP5 is installed and the instance of ControlP5 was ok with no compiler error, but the line below says Cannot find a class or type named “ControlFrame”

[Line 37](https://github.com/sebnil/RealtimePlotter/blob/master/BasicRealtimePlotter/BasicRealtimePlotter.pde#L37) should be `surface.setTitle()` and not `frame.setTitle()`. Warning is thrown by Processing compiler: ``` Use surface.setTitle() instead of frame.setTitle in Processing 3 ``` It is correct in the RealtimePlotterWithControlPanel.pde,...