1091a121bSHarald Geyer# 2091a121bSHarald Geyer# humidity sensor drivers 3091a121bSHarald Geyer# 4091a121bSHarald Geyermenu "Humidity sensors" 5091a121bSHarald Geyer 6366a3270STiberiu Breanaconfig AM2315 7366a3270STiberiu Breana tristate "Aosong AM2315 relative humidity and temperature sensor" 8366a3270STiberiu Breana depends on I2C 9193e2d4fSAlison Schofield select IIO_BUFFER 10193e2d4fSAlison Schofield select IIO_TRIGGERED_BUFFER 11366a3270STiberiu Breana help 12366a3270STiberiu Breana If you say yes here you get support for the Aosong AM2315 13366a3270STiberiu Breana relative humidity and ambient temperature sensor. 14366a3270STiberiu Breana 15366a3270STiberiu Breana This driver can also be built as a module. If so, the module will 16366a3270STiberiu Breana be called am2315. 17366a3270STiberiu Breana 18091a121bSHarald Geyerconfig DHT11 19091a121bSHarald Geyer tristate "DHT11 (and compatible sensors) driver" 2084935853SGeert Uytterhoeven depends on GPIOLIB || COMPILE_TEST 21091a121bSHarald Geyer help 22091a121bSHarald Geyer This driver supports reading data via a single interrupt 23091a121bSHarald Geyer generating GPIO line. Currently tested are DHT11 and DHT22. 24091a121bSHarald Geyer Other sensors should work as well as long as they speak the 25091a121bSHarald Geyer same protocol. 26091a121bSHarald Geyer 274839367dSMatt Ranostayconfig HDC100X 284839367dSMatt Ranostay tristate "TI HDC100x relative humidity and temperature sensor" 294839367dSMatt Ranostay depends on I2C 3016bf793fSAlison Schofield select IIO_BUFFER 3116bf793fSAlison Schofield select IIO_TRIGGERED_BUFFER 324839367dSMatt Ranostay help 33ca1902ffSAlison Schofield Say yes here to build support for the Texas Instruments 34ca1902ffSAlison Schofield HDC1000 and HDC1008 relative humidity and temperature sensors. 354839367dSMatt Ranostay 364839367dSMatt Ranostay To compile this driver as a module, choose M here: the module 374839367dSMatt Ranostay will be called hdc100x. 384839367dSMatt Ranostay 39*d7ed89d5SSong Hongyanconfig HID_SENSOR_HUMIDITY 40*d7ed89d5SSong Hongyan tristate "HID Environmental humidity sensor" 41*d7ed89d5SSong Hongyan depends on HID_SENSOR_HUB 42*d7ed89d5SSong Hongyan select IIO_BUFFER 43*d7ed89d5SSong Hongyan select IIO_TRIGGERED_BUFFER 44*d7ed89d5SSong Hongyan select HID_SENSOR_IIO_COMMON 45*d7ed89d5SSong Hongyan select HID_SENSOR_IIO_TRIGGER 46*d7ed89d5SSong Hongyan help 47*d7ed89d5SSong Hongyan Say yes here to build support for the HID SENSOR 48*d7ed89d5SSong Hongyan humidity driver 49*d7ed89d5SSong Hongyan 50*d7ed89d5SSong Hongyan To compile this driver as a module, choose M here: the module 51*d7ed89d5SSong Hongyan will be called hid-sensor-humidity. 52*d7ed89d5SSong Hongyan 53e4a70e3eSLorenzo Bianconiconfig HTS221 54e4a70e3eSLorenzo Bianconi tristate "STMicroelectronics HTS221 sensor Driver" 55e4a70e3eSLorenzo Bianconi depends on (I2C || SPI) 56e4a70e3eSLorenzo Bianconi select IIO_BUFFER 57e4a70e3eSLorenzo Bianconi select IIO_TRIGGERED_BUFFER 58e4a70e3eSLorenzo Bianconi select HTS221_I2C if (I2C) 59e4a70e3eSLorenzo Bianconi select HTS221_SPI if (SPI_MASTER) 60e4a70e3eSLorenzo Bianconi help 61e4a70e3eSLorenzo Bianconi Say yes here to build support for STMicroelectronics HTS221 62e4a70e3eSLorenzo Bianconi temperature-humidity sensor 63e4a70e3eSLorenzo Bianconi 64e4a70e3eSLorenzo Bianconi To compile this driver as a module, choose M here: the module 65e4a70e3eSLorenzo Bianconi will be called hts221. 66e4a70e3eSLorenzo Bianconi 67e4a70e3eSLorenzo Bianconiconfig HTS221_I2C 68e4a70e3eSLorenzo Bianconi tristate 69e4a70e3eSLorenzo Bianconi depends on HTS221 70e4a70e3eSLorenzo Bianconi 71e4a70e3eSLorenzo Bianconiconfig HTS221_SPI 72e4a70e3eSLorenzo Bianconi tristate 73e4a70e3eSLorenzo Bianconi depends on HTS221 74e4a70e3eSLorenzo Bianconi 752b5c53d2SLudovic Tancerelconfig HTU21 762b5c53d2SLudovic Tancerel tristate "Measurement Specialties HTU21 humidity & temperature sensor" 772b5c53d2SLudovic Tancerel depends on I2C 782b5c53d2SLudovic Tancerel select IIO_MS_SENSORS_I2C 792b5c53d2SLudovic Tancerel help 802b5c53d2SLudovic Tancerel If you say yes here you get support for the Measurement Specialties 812b5c53d2SLudovic Tancerel HTU21 humidity and temperature sensor. 821b75ce65SLudovic Tancerel This driver is also used for MS8607 temperature, pressure & humidity 831b75ce65SLudovic Tancerel sensor 842b5c53d2SLudovic Tancerel 852b5c53d2SLudovic Tancerel This driver can also be built as a module. If so, the module will 862b5c53d2SLudovic Tancerel be called htu21. 872b5c53d2SLudovic Tancerel 88049973b2SPeter Meerwaldconfig SI7005 89049973b2SPeter Meerwald tristate "SI7005 relative humidity and temperature sensor" 90049973b2SPeter Meerwald depends on I2C 91049973b2SPeter Meerwald help 92049973b2SPeter Meerwald Say yes here to build support for the Silabs Si7005 relative 93049973b2SPeter Meerwald humidity and temperature sensor. 94049973b2SPeter Meerwald 95049973b2SPeter Meerwald To compile this driver as a module, choose M here: the module 963f420265SCristina Moraru will be called si7005. This driver also 973f420265SCristina Moraru supports Hoperf TH02 Humidity and Temperature Sensor. 98049973b2SPeter Meerwald 99064a7463SDavid Barksdaleconfig SI7020 100064a7463SDavid Barksdale tristate "Si7013/20/21 Relative Humidity and Temperature Sensors" 101064a7463SDavid Barksdale depends on I2C 102064a7463SDavid Barksdale help 103064a7463SDavid Barksdale Say yes here to build support for the Silicon Labs Si7013/20/21 104920dad0cSCristina Moraru Relative Humidity and Temperature Sensors. This driver also 105920dad0cSCristina Moraru supports Hoperf TH06 Humidity and Temperature Sensor. 106064a7463SDavid Barksdale 107064a7463SDavid Barksdale To compile this driver as a module, choose M here: the module 108064a7463SDavid Barksdale will be called si7020. 109064a7463SDavid Barksdale 110091a121bSHarald Geyerendmenu 111