author | sandman <sandman> | 2002-10-27 15:56:07 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-27 15:56:07 (UTC) |
commit | 5f09fc992af19fc208315217eb46635a762f1e55 (patch) (side-by-side diff) | |
tree | ca5fae3182096453fd4db323a748bac038ae4ba3 | |
parent | bf21c882b82bfcdbcdce6b2dc5d863a2a2fb37c7 (diff) | |
download | opie-5f09fc992af19fc208315217eb46635a762f1e55.zip opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.gz opie-5f09fc992af19fc208315217eb46635a762f1e55.tar.bz2 |
fixed a typo in the light sensor code
-rw-r--r-- | libopie/odevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 44fe35f..6ea4d45 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp @@ -659,65 +659,65 @@ bool iPAQ::setDisplayBrightness ( int bright ) if ( bright > 1 ) bright = (int) ( 0.5 + ( ::pow ( 2, double( bright ) / 255.0 ) - 1 ) * 128.0 ); // logarithmic // bright = ( bright + 1 ) / 2; if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { FLITE_IN bl; bl. mode = 1; bl. pwr = bright ? 1 : 0; bl. brightness = bright; res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); ::close ( fd ); } return res; } int iPAQ::displayBrightnessResolution ( ) const { return 255; // really 128, but logarithmic control is smoother this way } bool iPAQ::hasLightSensor ( ) const { return true; } int iPAQ::readLightSensor ( ) { int fd; int val = -1; - if (( fd = ::open ( "/proc/hal/lightsensor", O_RDONLY )) >= 0 ) { + if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { char buffer [5]; if ( ::read ( fd, buffer, 4 ) == 4 ) { char *endptr; buffer [4] = 0; val = ::strtol ( buffer + 2, &endptr, 16 ); if ( *endptr != 0 ) val = -1; } ::close ( fd ); } return val; } /************************************************** * * Zaurus * **************************************************/ void Zaurus::init ( ) { d-> m_modelstr = "Zaurus SL5000"; d-> m_model = Model_Zaurus_SL5000; d-> m_vendorstr = "Sharp"; |