Back to project page android-weather-station.
The source code is released under:
Apache License
If you think the Android project android-weather-station listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.grundid.weather.sensor; /*from w w w. j a va 2 s . c o m*/ public class LightSensor extends Sensor { private int[] mult = { 1, 10, 100, 1000 }; public LightSensor(byte[] data) { super(data); } public int getLumen() { return calc14Bit(getByte(2), getByte(3)) * mult[getByte(4)]; } };