Kconfig 3.1 KB

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