Skip to content Skip to sidebar Skip to footer

Sensor List In Samsung Gt-i9300

Please help.I am trying to get all the available sensors of a android device.But when i tried to get from 'GT_19300' it shows a list given below 'LSM330DLC 3-axis Accelerom

Solution 1:

'iNemoEngine xxx' should be a kind of 'virtual sensor', like 'rotation_vector sensor' implemented in ICS by Google.

Accelerometer, Magnetic, Light, Proximity, Gyroscope, Pressure, Gravity, these are hardware-sensor.

others like linear accerlerometer, rotation vector, orientation, these are software implemented using sensor fusion algorithm.

you dont need to care about these names but try:

publicvoidonSensorChanged(SensorEvent event) {
    switch(event.sensor.getType()) {

             case Sensor.TYPE_GYROSCOPE:
             // // your processingbreak;
            }
     }

for gyroscope on S3, I believe you will receive data from 'LSM330DLC Gyroscope sensor'.

hope this will help.

Solution 2:

Don't know if it helps, but you can install an app called "Elixir" which lists the sensors on the device. You can search for it on the Play Store.

Post a Comment for "Sensor List In Samsung Gt-i9300"