Light sensor on Nexus One returns only two distinct values

六月ゝ 毕业季﹏ 提交于 2019-12-05 01:05:40

问题


I´m trying to read the values of the Light Sensor of my Nexus One, but I´mgetting only following values:

10.0

225.0

and in a few cases some values much higher.

The used code:

sensorManager = (SensorManager) context
                .getSystemService(Context.SENSOR_SERVICE);
        sensor = sensorManager.getDefaultSensor(Sensor.TYPE_LIGHT);

        listener = new SensorEventListener() {

            @Override
            public void onAccuracyChanged(Sensor sensor, int accuracy) {
            }

            @Override
            public void onSensorChanged(SensorEvent event) {
                 Log.d(Constants.TAG, "Brightness: " + event.values[0]);

            }

        };
        sensorManager.registerListener(listener, sensor,
                SensorManager.SENSOR_DELAY_NORMAL);

    }

Does anybody have experience with the light sensor on the Nexus One or another Android device? Is my code the correct way to read the values? How can I get better and more accurate values?


回答1:


Your code looks fine. I was receiving values like this: 10, 225, 320, 640, 1280, 2600, 3200, 10240. But I really needed to point device towards sun to receive higher values.

Edit: from light sensor characteristic that can be obtained on my phone by using Android API - 10240 is the highest value that can be returned by this sensor.



来源:https://stackoverflow.com/questions/3479015/light-sensor-on-nexus-one-returns-only-two-distinct-values

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!