Control Panel Graphing

From Phidgets Support


In the Phidget Control Panel, open the channel for your device and click on the Plot.jpg icon next to the data type that you want to plot. This will open up a new window:

Plot2.jpg

The default graph is the Raw Data graph. This graph displays the readings from your sensor over time. This can be very helpful in visualizing a sensor's behaviour in a much more concrete way than just reading the numbers from the main Control Panel Example.

Filtering

You can perform filtering on the raw data in order to reduce noise in your graph.

Filtertype.jpg

Low-Pass Filter

This filter reduces and removes high frequency components of the graphed data. It's generally used to smooth out your graph, since high-frequency noise can make a graph harder to read. Select "Low Pass Filter" from the drop down menu and move the slider to select the averaging window. The larger the averaging window, the smoother the line will be.

Note that if your filter is comparable to or longer than the period of the signal you are trying to measure, you will start to filter out the data you want along with the noise.

Lowpass.jpg

High-Pass Filter

Unlike the low-pass filter, this filter is used specifically to look at the high-frequency noise in your signal. Select "High Pass Filter" from the drop down menu to see the noise.

Graph Type

You can perform a transform on the incoming data to get different graph types that may provide insights into your sensor data.

Fast Fourier Transform (FFT)

The FFT graph type will transform your data into a frequency plot, which can sometimes reveal hidden information about your data. For example, if you look at this accelerometer raw data:

Accel-raw.jpg

It's clear that there's around ±0.002g of noise in the signal, but just from looking at the raw data it may be unclear where the noise is coming from- is it the sensor itself, or something external? Switching to the FFT plot gives us a clue:

Accel-fft.jpg

The FFT plot reveals that the noise is mostly coming from something vibrating at 9Hz- in this case, a nearby motor was running. You can increase the graph length to sharpen the frequency spikes, just know it will take the graph longer to react to changes in the incoming data.

In general, the FFT plot is most useful for analyzing sensor data where frequency has useful real-world implications, such as measuring vibrations of an accelerometer, or checking for 50/60Hz interference form the power grid.

Allan Deviation

Gyro-allan.jpg

Allan Deviation is a very specialized type of graph used to compare noise characteristics between sensors. Interpreting the Allan Deviation plot is outside the scope of this guide, but in general your sensor should be stabilized (e.g. if it's a spatial, it should be stationary. If it's a temperature sensor, the ambient temperature should be kept at a static level).

More Complex Graphing

If you need more complex functionality such as logging multiple sensors to the same sheet or performing calculations on the data, you'll need to write your own program. This graphing tool is intended as a jumping-off point to better understand your sensors individually, so you can get a feel for how to use them in your applications.

The quickest way to get started is to download some sample code for your desired programming language and then search Google for information on logging or plotting data in that language (e.g. "how to log to csv in python").