You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on a project using the Go direct® hand dynamometer and I'm trying to collect data at 50Hz. I called gdx.start(20) for this task but it seems like the sensor is sending packages containing multiple data points at a lower frequency(around 10Hz) to simulate a higher sample rate(50Hz) instead of sending data at a constant interval #1. There will be a slight delay between each package so the data is quite discontinuous with respect to time. Is there any way that allows me to just collect data at a constant rate, like 50Hz?
The text was updated successfully, but these errors were encountered:
The data are being collected by the sensor at a constant interval, as specified in gdx.start().
The Go Direct sensor performs continuous measurements at the specified period intervals and sends the resulting data to Python for display. Since we know the specified measurement period, we can manufacture timestamps for each measurement. The data are transferred in a measurement packet. If the period is slow enough, then the packet might only have a single data point. But at faster periods the packet needs to contain multiple data points.
You must also call gdx.read() fast enough to make sure you don't eventually lose data.
I'm working on a project using the Go direct® hand dynamometer and I'm trying to collect data at 50Hz. I called gdx.start(20) for this task but it seems like the sensor is sending packages containing multiple data points at a lower frequency(around 10Hz) to simulate a higher sample rate(50Hz) instead of sending data at a constant interval #1. There will be a slight delay between each package so the data is quite discontinuous with respect to time. Is there any way that allows me to just collect data at a constant rate, like 50Hz?
The text was updated successfully, but these errors were encountered: