Kconfig 3.1 KB

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