Kconfig 955 字节
Newer Older
H
Harald Geyer 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#
# humidity sensor drivers
#
menu "Humidity sensors"

config DHT11
	tristate "DHT11 (and compatible sensors) driver"
	depends on GPIOLIB
	help
	  This driver supports reading data via a single interrupt
	  generating GPIO line. Currently tested are DHT11 and DHT22.
	  Other sensors should work as well as long as they speak the
	  same protocol.

15 16 17 18 19 20 21 22 23 24
config SI7005
	tristate "SI7005 relative humidity and temperature sensor"
	depends on I2C
	help
	  Say yes here to build support for the Silabs Si7005 relative
	  humidity and temperature sensor.

	  To compile this driver as a module, choose M here: the module
	  will be called si7005.

D
David Barksdale 已提交
25 26 27 28 29 30 31 32 33 34
config SI7020
	tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"
	depends on I2C
	help
	  Say yes here to build support for the Silicon Labs Si7013/20/21
	  Relative Humidity and Temperature Sensors.

	  To compile this driver as a module, choose M here: the module
	  will be called si7020.

H
Harald Geyer 已提交
35
endmenu