1# 2# humidity sensor drivers 3# 4menu "Humidity sensors" 5 6config 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 16config DHT11 17 tristate "DHT11 (and compatible sensors) driver" 18 depends on GPIOLIB || COMPILE_TEST 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 25config 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 35config 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. 42 This driver is also used for MS8607 temperature, pressure & humidity 43 sensor 44 45 This driver can also be built as a module. If so, the module will 46 be called htu21. 47 48config 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 56 will be called si7005. This driver also 57 supports Hoperf TH02 Humidity and Temperature Sensor. 58 59config 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 64 Relative Humidity and Temperature Sensors. This driver also 65 supports Hoperf TH06 Humidity and Temperature Sensor. 66 67 To compile this driver as a module, choose M here: the module 68 will be called si7020. 69 70endmenu 71