I would like to use the accelerometer data in my application.
I am able to access the TYPE_ACCELEROMETER without any problems, but many suggest to use the TYPE_LINEAR_ACCELERATION which is already filtered from the earth gravity. It looks like I do not have access to that sensor though, as in the code below the log will return null.
From what I understand TYPE_LINEAR_ACCELERATION is available as a "software sensor" on Android API greater then 8...I am using 14 as my minimum on a Samsung Galaxy Tab 2.
Any idea why I get null? Is it because this model does not have a gyroscope?
Code:
mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
mLinearAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION);
Log.i("TYPE_LINEAR_ACCELERATION", String.valueOf(mLinearAccelerometer));
Thanks
Edit: added missing "=" sign