#090 PlotNValues
Sample up to 6 analog inputs and stream the data to serial in ASCII format - for plotting with Processing for example.
Notes
This is a generic program for sampling up to 6 analog values on a fixed time base, and streaming the data to the serial port in ASCII, comma-separated format.
PlotNValues (a simple Processing sketch) can be used to read the data from the serial port and plot the values over time, with some coloration effects thrown in for good measure.
In other words, we’re using Arduino and Processing as a basic oscilloscope or waveform plotter. And it kind of works, as long as the sampling frequency is kept relatively low (10ms/100Hz by default).
The number of traces is fixed with the TRACE_COUNT defined in the sketch. The values are read from analog pins A0,A1,..A5 respectively.
Here’s an example 2-input trace:
Here’s an example 6-input trace:
Construction
Credits and References
- FlexiTimer2 library
- PlotNValues Processing sketch