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 select IIO_BUFFER 31 select IIO_TRIGGERED_BUFFER 32 help 33 Say yes here to build support for the Texas Instruments 34 HDC1000 and HDC1008 relative humidity and temperature sensors. 35 36 To compile this driver as a module, choose M here: the module 37 will be called hdc100x. 38 39config HID_SENSOR_HUMIDITY 40 tristate "HID Environmental humidity sensor" 41 depends on HID_SENSOR_HUB 42 select IIO_BUFFER 43 select IIO_TRIGGERED_BUFFER 44 select HID_SENSOR_IIO_COMMON 45 select HID_SENSOR_IIO_TRIGGER 46 help 47 Say yes here to build support for the HID SENSOR 48 humidity driver 49 50 To compile this driver as a module, choose M here: the module 51 will be called hid-sensor-humidity. 52 53config HTS221 54 tristate "STMicroelectronics HTS221 sensor Driver" 55 depends on (I2C || SPI) 56 select IIO_BUFFER 57 select IIO_TRIGGERED_BUFFER 58 select HTS221_I2C if (I2C) 59 select HTS221_SPI if (SPI_MASTER) 60 help 61 Say yes here to build support for STMicroelectronics HTS221 62 temperature-humidity sensor 63 64 To compile this driver as a module, choose M here: the module 65 will be called hts221. 66 67config HTS221_I2C 68 tristate 69 depends on HTS221 70 71config HTS221_SPI 72 tristate 73 depends on HTS221 74 75config HTU21 76 tristate "Measurement Specialties HTU21 humidity & temperature sensor" 77 depends on I2C 78 select IIO_MS_SENSORS_I2C 79 help 80 If you say yes here you get support for the Measurement Specialties 81 HTU21 humidity and temperature sensor. 82 This driver is also used for MS8607 temperature, pressure & humidity 83 sensor 84 85 This driver can also be built as a module. If so, the module will 86 be called htu21. 87 88config SI7005 89 tristate "SI7005 relative humidity and temperature sensor" 90 depends on I2C 91 help 92 Say yes here to build support for the Silabs Si7005 relative 93 humidity and temperature sensor. 94 95 To compile this driver as a module, choose M here: the module 96 will be called si7005. This driver also 97 supports Hoperf TH02 Humidity and Temperature Sensor. 98 99config SI7020 100 tristate "Si7013/20/21 Relative Humidity and Temperature Sensors" 101 depends on I2C 102 help 103 Say yes here to build support for the Silicon Labs Si7013/20/21 104 Relative Humidity and Temperature Sensors. This driver also 105 supports Hoperf TH06 Humidity and Temperature Sensor. 106 107 To compile this driver as a module, choose M here: the module 108 will be called si7020. 109 110endmenu 111