OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getLux
(Results
1 - 7
of
7
) sorted by null
/hardware/bsp/intel/peripheral/libupm/examples/javascript/
tsl2561.js
36
console.log("Light value is " + myDigitalLightSensor.
getLux
());
/hardware/bsp/intel/peripheral/libupm/examples/c++/
tsl2561.cxx
46
fprintf(stdout, "Lux = %d\n", sensor->
getLux
());
/hardware/bsp/intel/peripheral/libupm/examples/java/
TSL2561Sample.java
42
System.out.println("Lux = " + sensor.
getLux
());
/hardware/bsp/intel/peripheral/libupm/examples/python/
tsl2561.py
47
print "Light value is " + str(myDigitalLightSensor.
getLux
())
/hardware/bsp/intel/peripheral/libupm/src/tsl2561/
tsl2561.h
140
int
getLux
();
tsl2561.cxx
89
TSL2561::
getLux
()
/frameworks/base/services/core/java/com/android/server/display/
AutomaticBrightnessController.java
363
float lux = mAmbientLightRingBuffer.
getLux
(i);
370
sum += mAmbientLightRingBuffer.
getLux
(i) * weight;
394
if (mAmbientLightRingBuffer.
getLux
(i) <= mBrighteningLuxThreshold) {
406
if (mAmbientLightRingBuffer.
getLux
(i) >= mDarkeningLuxThreshold) {
657
public float
getLux
(int index) {
743
buf.append(
getLux
(i));
Completed in 3585 milliseconds