1# 2# humidity sensor drivers 3# 4menu "Humidity sensors" 5 6config DHT11 7 tristate "DHT11 (and compatible sensors) driver" 8 depends on GPIOLIB || COMPILE_TEST 9 help 10 This driver supports reading data via a single interrupt 11 generating GPIO line. Currently tested are DHT11 and DHT22. 12 Other sensors should work as well as long as they speak the 13 same protocol. 14 15config HDC100X 16 tristate "TI HDC100x relative humidity and temperature sensor" 17 depends on I2C 18 help 19 Say yes here to build support for the TI HDC100x series of 20 relative humidity and temperature sensors. 21 22 To compile this driver as a module, choose M here: the module 23 will be called hdc100x. 24 25config HTU21 26 tristate "Measurement Specialties HTU21 humidity & temperature sensor" 27 depends on I2C 28 select IIO_MS_SENSORS_I2C 29 help 30 If you say yes here you get support for the Measurement Specialties 31 HTU21 humidity and temperature sensor. 32 33 This driver can also be built as a module. If so, the module will 34 be called htu21. 35 36config SI7005 37 tristate "SI7005 relative humidity and temperature sensor" 38 depends on I2C 39 help 40 Say yes here to build support for the Silabs Si7005 relative 41 humidity and temperature sensor. 42 43 To compile this driver as a module, choose M here: the module 44 will be called si7005. 45 46config SI7020 47 tristate "Si7013/20/21 Relative Humidity and Temperature Sensors" 48 depends on I2C 49 help 50 Say yes here to build support for the Silicon Labs Si7013/20/21 51 Relative Humidity and Temperature Sensors. 52 53 To compile this driver as a module, choose M here: the module 54 will be called si7020. 55 56endmenu 57