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 select IIO_BUFFER 10 select IIO_TRIGGERED_BUFFER 11 help 12 If you say yes here you get support for the Aosong AM2315 13 relative humidity and ambient temperature sensor. 14 15 This driver can also be built as a module. If so, the module will 16 be called am2315. 17 18config DHT11 19 tristate "DHT11 (and compatible sensors) driver" 20 depends on GPIOLIB || COMPILE_TEST 21 help 22 This driver supports reading data via a single interrupt 23 generating GPIO line. Currently tested are DHT11 and DHT22. 24 Other sensors should work as well as long as they speak the 25 same protocol. 26 27config HDC100X 28 tristate "TI HDC100x relative humidity and temperature sensor" 29 depends on I2C 30 help 31 Say yes here to build support for the Texas Instruments 32 HDC1000 and HDC1008 relative humidity and temperature sensors. 33 34 To compile this driver as a module, choose M here: the module 35 will be called hdc100x. 36 37config HTS221 38 tristate "STMicroelectronics HTS221 sensor Driver" 39 depends on (I2C || SPI) 40 select IIO_BUFFER 41 select IIO_TRIGGERED_BUFFER 42 select HTS221_I2C if (I2C) 43 select HTS221_SPI if (SPI_MASTER) 44 help 45 Say yes here to build support for STMicroelectronics HTS221 46 temperature-humidity sensor 47 48 To compile this driver as a module, choose M here: the module 49 will be called hts221. 50 51config HTS221_I2C 52 tristate 53 depends on HTS221 54 55config HTS221_SPI 56 tristate 57 depends on HTS221 58 59config HTU21 60 tristate "Measurement Specialties HTU21 humidity & temperature sensor" 61 depends on I2C 62 select IIO_MS_SENSORS_I2C 63 help 64 If you say yes here you get support for the Measurement Specialties 65 HTU21 humidity and temperature sensor. 66 This driver is also used for MS8607 temperature, pressure & humidity 67 sensor 68 69 This driver can also be built as a module. If so, the module will 70 be called htu21. 71 72config SI7005 73 tristate "SI7005 relative humidity and temperature sensor" 74 depends on I2C 75 help 76 Say yes here to build support for the Silabs Si7005 relative 77 humidity and temperature sensor. 78 79 To compile this driver as a module, choose M here: the module 80 will be called si7005. This driver also 81 supports Hoperf TH02 Humidity and Temperature Sensor. 82 83config SI7020 84 tristate "Si7013/20/21 Relative Humidity and Temperature Sensors" 85 depends on I2C 86 help 87 Say yes here to build support for the Silicon Labs Si7013/20/21 88 Relative Humidity and Temperature Sensors. This driver also 89 supports Hoperf TH06 Humidity and Temperature Sensor. 90 91 To compile this driver as a module, choose M here: the module 92 will be called si7020. 93 94endmenu 95