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