iio: chemical: Add IIO_CONCENTRATION channel type
There are air quality sensors that report data back in parts per million of VOC (Volatile Organic Compounds) which are usually indexed from CO2 or another common pollutant. This patchset adds an IIO_CONCENTRATION type that returns a percentage of substance because no other channels types fit this use case. Modifiers for IIO_MOD_CO2 and IIO_MOD_VOC gas types are defined. Signed-off-by: Matt Ranostay <mranostay@gmail.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
0df5a5488b
commit
8ff6b3bc94
3 changed files with 17 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ enum iio_chan_type {
|
|||
IIO_ENERGY,
|
||||
IIO_DISTANCE,
|
||||
IIO_VELOCITY,
|
||||
IIO_CONCENTRATION,
|
||||
};
|
||||
|
||||
enum iio_modifier {
|
||||
|
|
@ -72,6 +73,8 @@ enum iio_modifier {
|
|||
IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z,
|
||||
IIO_MOD_I,
|
||||
IIO_MOD_Q,
|
||||
IIO_MOD_CO2,
|
||||
IIO_MOD_VOC,
|
||||
};
|
||||
|
||||
enum iio_event_type {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue