Kconfig 971 B

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # humidity sensor drivers
  3. #
  4. menu "Humidity sensors"
  5. config DHT11
  6. tristate "DHT11 (and compatible sensors) driver"
  7. depends on GPIOLIB || COMPILE_TEST
  8. help
  9. This driver supports reading data via a single interrupt
  10. generating GPIO line. Currently tested are DHT11 and DHT22.
  11. Other sensors should work as well as long as they speak the
  12. same protocol.
  13. config SI7005
  14. tristate "SI7005 relative humidity and temperature sensor"
  15. depends on I2C
  16. help
  17. Say yes here to build support for the Silabs Si7005 relative
  18. humidity and temperature sensor.
  19. To compile this driver as a module, choose M here: the module
  20. will be called si7005.
  21. config SI7020
  22. tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"
  23. depends on I2C
  24. help
  25. Say yes here to build support for the Silicon Labs Si7013/20/21
  26. Relative Humidity and Temperature Sensors.
  27. To compile this driver as a module, choose M here: the module
  28. will be called si7020.
  29. endmenu