qwerty

About

Username
qwerty
Joined
Visits
45
Last Active
Roles
Member

Comments

  • https://pastebin.com/aRg41UzZ
  • I'm using Samsung galaxy tab 2 with Android version 6.0.1. When I run acc+gyro+mag all together, as in the code below, the data is not saved and displayed in real time. There is a time lag. But when I comment out any two and run only one of them, …
  • OK, I removed sensor fusion and am only saving the 9 axis acc, gyro and mag data. The bluetooth connection got better but it still disconnects after about 40 minutes, and does not reconnect on its own (keeps showing the "reconnecting.." window). I n…
  • The other problem I'm facing with SensorFusion is that the bluetooth drops connection after just a few seconds. Below is the error I get. Again, this does not happen when I comment out the sensorfusion implementation code. V/BoostFramework: BoostF…
  • OK, so I changed Log.i("example", msg.getData(SensorFusion.Quaternion.class).toString()); to Log.i("SensorFusion data:", msg.getData(CartesianFloat.class).toString()); and I don't get that error anymore. However, now I'm facing another problem. I ha…
  • That link says that I need to use "CartesianFloat". But in your SensorFusion.java, there is no "CartesianFloat". There is the this comment above interface CorrectedCartesianFloat {...}: /** * Variant of the {@link com.mbientlab.metawear.dat…
  • What should I replace SensorFusion.Quaternion.class with:Log.i("SensorFusion data:", msg.getData(SensorFusion.Quaternion.class).toString()); I'm using IMUPlus: sensorFusion.configure() .setMode(SensorFusion.Mode.IMU_PLUS) .setAccRan…
  • Hi Eric, I'm trying to do something similar.  I'm using your data collection at the bottom of: https://mbientlab.com/androiddocs/2.7.0/sensor_fusion.html  But instead of quaternion I want to use linear acceleration. Can you please tell me …
  • Hi, Could someone share with me the code to: (1) Start logging all sensor data with a single button (2) Save all sensor data with a single button (3) Stream all sensor data simultaneously