diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2011-05-18 14:39:13 -0700 |
---|---|---|
committer | Android Code Review <code-review@android.com> | 2011-05-18 14:39:13 -0700 |
commit | 83eb0af000c80bc9d9b2a19eb15ab22bb0dddb1b (patch) | |
tree | bbffe76bf675ae16cf2f7cef0b77e5f430af04c2 /include | |
parent | ab8a35906f6ed5055a0a6c52db4d5cb154cdf703 (diff) | |
parent | d2ed15a6b81a9a2fd95c1a565f72796869545115 (diff) | |
download | hardware_libhardware-83eb0af000c80bc9d9b2a19eb15ab22bb0dddb1b.zip hardware_libhardware-83eb0af000c80bc9d9b2a19eb15ab22bb0dddb1b.tar.gz hardware_libhardware-83eb0af000c80bc9d9b2a19eb15ab22bb0dddb1b.tar.bz2 |
Merge "support humidity sensor type"
Diffstat (limited to 'include')
-rw-r--r-- | include/hardware/sensors.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/hardware/sensors.h b/include/hardware/sensors.h index 7f9706b..297d31a 100644 --- a/include/hardware/sensors.h +++ b/include/hardware/sensors.h @@ -61,6 +61,7 @@ __BEGIN_DECLS #define SENSOR_TYPE_GRAVITY 9 #define SENSOR_TYPE_LINEAR_ACCELERATION 10 #define SENSOR_TYPE_ROTATION_VECTOR 11 +#define SENSOR_TYPE_RELATIVE_HUMIDITY 12 /** * Values returned by the accelerometer in various locations in the universe. @@ -267,6 +268,14 @@ __BEGIN_DECLS * sensors_event_t.data[2] = z*sin(theta/2) * sensors_event_t.data[3] = cos(theta/2) * + * Relative Humidity + * ----------------- + * + * A relative humidity sensor measures relative ambient air humidity and + * returns a value in percent. + * + * Relative humidity sensors report a value only when it changes and each + * time the sensor is enabled. setDelay() is ignored. */ typedef struct { @@ -333,6 +342,9 @@ typedef struct sensors_event_t { /* pressure in hectopascal (hPa) */ float pressure; + + /* relative humidity in percent */ + float relative_humidity; }; uint32_t reserved1[4]; } sensors_event_t; |