Reputation: 1
I got a serial port in .NET at 9600 baudrate. The incoming data is numeric, it's the time between 2 pulses of a motor encoder, it's the RPM of the motor actualy.
How do I plot the data in real time?
Upvotes: -1
Views: 1706
Reputation: 11
A simple plotter is fairly easy to do. You can spend hours looking for a just right library or program or just write your own in equivalent time.
Here is how I have done it in the past
I had a similar issue some time back. I looked for a simple, light program that would do it do out of the box. I finally gave in and coded my own program using Win32 calls. A .NET implementation would be simpler.
http://www.fast-product-development.com/real-time-serial-data-plot.html
Upvotes: 1