Harald Geyer | 091a121 | 2013-12-01 15:04:00 +0000 | [diff] [blame] | 1 | # |
| 2 | # humidity sensor drivers |
| 3 | # |
| 4 | menu "Humidity sensors" |
| 5 | |
Tiberiu Breana | 366a327 | 2016-04-18 17:50:43 +0300 | [diff] [blame] | 6 | config AM2315 |
| 7 | tristate "Aosong AM2315 relative humidity and temperature sensor" |
| 8 | depends on I2C |
| 9 | help |
| 10 | If you say yes here you get support for the Aosong AM2315 |
| 11 | relative humidity and ambient temperature sensor. |
| 12 | |
| 13 | This driver can also be built as a module. If so, the module will |
| 14 | be called am2315. |
| 15 | |
Harald Geyer | 091a121 | 2013-12-01 15:04:00 +0000 | [diff] [blame] | 16 | config DHT11 |
| 17 | tristate "DHT11 (and compatible sensors) driver" |
Geert Uytterhoeven | 8493585 | 2015-05-05 18:32:23 +0200 | [diff] [blame] | 18 | depends on GPIOLIB || COMPILE_TEST |
Harald Geyer | 091a121 | 2013-12-01 15:04:00 +0000 | [diff] [blame] | 19 | help |
| 20 | This driver supports reading data via a single interrupt |
| 21 | generating GPIO line. Currently tested are DHT11 and DHT22. |
| 22 | Other sensors should work as well as long as they speak the |
| 23 | same protocol. |
| 24 | |
Matt Ranostay | 4839367 | 2015-09-06 13:27:39 -0700 | [diff] [blame] | 25 | config HDC100X |
| 26 | tristate "TI HDC100x relative humidity and temperature sensor" |
| 27 | depends on I2C |
| 28 | help |
| 29 | Say yes here to build support for the TI HDC100x series of |
| 30 | relative humidity and temperature sensors. |
| 31 | |
| 32 | To compile this driver as a module, choose M here: the module |
| 33 | will be called hdc100x. |
| 34 | |
Ludovic Tancerel | 2b5c53d | 2015-10-01 16:13:39 +0200 | [diff] [blame] | 35 | config HTU21 |
| 36 | tristate "Measurement Specialties HTU21 humidity & temperature sensor" |
| 37 | depends on I2C |
| 38 | select IIO_MS_SENSORS_I2C |
| 39 | help |
| 40 | If you say yes here you get support for the Measurement Specialties |
| 41 | HTU21 humidity and temperature sensor. |
Ludovic Tancerel | 1b75ce6 | 2015-10-01 16:13:41 +0200 | [diff] [blame] | 42 | This driver is also used for MS8607 temperature, pressure & humidity |
| 43 | sensor |
Ludovic Tancerel | 2b5c53d | 2015-10-01 16:13:39 +0200 | [diff] [blame] | 44 | |
| 45 | This driver can also be built as a module. If so, the module will |
| 46 | be called htu21. |
| 47 | |
Peter Meerwald | 049973b | 2014-10-01 12:03:00 +0100 | [diff] [blame] | 48 | config SI7005 |
| 49 | tristate "SI7005 relative humidity and temperature sensor" |
| 50 | depends on I2C |
| 51 | help |
| 52 | Say yes here to build support for the Silabs Si7005 relative |
| 53 | humidity and temperature sensor. |
| 54 | |
| 55 | To compile this driver as a module, choose M here: the module |
Cristina Moraru | 3f42026 | 2016-01-26 22:21:07 +0200 | [diff] [blame] | 56 | will be called si7005. This driver also |
| 57 | supports Hoperf TH02 Humidity and Temperature Sensor. |
Peter Meerwald | 049973b | 2014-10-01 12:03:00 +0100 | [diff] [blame] | 58 | |
David Barksdale | 064a746 | 2014-09-29 13:28:55 -0500 | [diff] [blame] | 59 | config SI7020 |
| 60 | tristate "Si7013/20/21 Relative Humidity and Temperature Sensors" |
| 61 | depends on I2C |
| 62 | help |
| 63 | Say yes here to build support for the Silicon Labs Si7013/20/21 |
Cristina Moraru | 920dad0 | 2016-01-26 22:17:49 +0200 | [diff] [blame] | 64 | Relative Humidity and Temperature Sensors. This driver also |
| 65 | supports Hoperf TH06 Humidity and Temperature Sensor. |
David Barksdale | 064a746 | 2014-09-29 13:28:55 -0500 | [diff] [blame] | 66 | |
| 67 | To compile this driver as a module, choose M here: the module |
| 68 | will be called si7020. |
| 69 | |
Harald Geyer | 091a121 | 2013-12-01 15:04:00 +0000 | [diff] [blame] | 70 | endmenu |