-
Notifications
You must be signed in to change notification settings - Fork 23
Shimmer unable to stream data unless plugged into base station #166
Description
Hi, I am facing a problem where I cannot log any data on bluetooth mode. I only enabled wide range accelerometer (sensor_d_accel) for my configuration. It can connect, but always gets stuck and never logs data. I think the status was never 3 either (streaming)
However, once I plug it into a base station, it would start logging data. If I take it out, it would still log data. If I turn it off and turn on the sensor again, it wouldn't work anymore.
I want to be able to log data without having to rely on the base station, plugging into the base station every single time. May I know what could have been wrong? Could there be something wrong with my code? I was mainly use the ShimmerConsoleAppExample, and had only modified program.cs
I was able to stream data perfectly fine on consensys. It works occasionally if I change this line,
int enabledSensors = ((int)ShimmerBluetooth.SensorBitmapShimmer3.SENSOR_A_ACCEL);
from SENSOR_D_ACCEL to SENSOR_A_ACCEL which is the low noise accelerometer. However, that is not the data that I want to get.
Any pointers will be much appreciated.
Thank you!