I'm looking at a lot of sensors on my device like so:

SensorManager sm = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
List < Sensor > allSensors = sm.getSensorList( Sensor.TYPE_ALL);
        
        for (Iterator iterator = allSensors.iterator(); 
iterator.hasNext();) {
Sensor sensor = (Sensor) iterator.next();
 String name = sensor.getName();
 System.out.println("name: " + name);
 }

I noticed a lot of them start with MPL:

09-26 15:49:14.580: I/System.out(26490): name: MPL Gyroscope
09-26 15:49:14.580: I/System.out(26490): name: MPL Accelerometer
09-26 15:49:14.580: I/System.out(26490): name: MPL Magnetic Field
09-26 15:49:14.580: I/System.out(26490): name: MPL Orientation
09-26 15:49:14.580: I/System.out(26490): name: MPL Rotation Vector
09-26 15:49:14.580: I/System.out(26490): name: MPL Linear Acceleration
09-26 15:49:14.580: I/System.out(26490): name: MPL Gravity

Anyone know what MPL means in this context?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to