Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#
# humidity sensor drivers
#
menu "Humidity sensors"

config CONFIG_AM2315
    tristate "Aosong AM2315 relative humidity and temperature sensor"
    depends on CONFIG_I2C
    select CONFIG_IIO_BUFFER
    select CONFIG_IIO_TRIGGERED_BUFFER
    help
      If you say yes here you get support for the Aosong CONFIG_AM2315
      relative humidity and ambient temperature sensor.

      This driver can also be built as a module. If so, the module will
      be called am2315.

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

config CONFIG_HDC100X
	tristate "TI HDC100x relative humidity and temperature sensor"
	depends on CONFIG_I2C
	select CONFIG_IIO_BUFFER
	select CONFIG_IIO_TRIGGERED_BUFFER
	help
	  Say yes here to build support for the Texas Instruments
	  HDC1000 and HDC1008 relative humidity and temperature sensors.

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

config CONFIG_HTS221
	tristate "STMicroelectronics HTS221 sensor Driver"
	depends on (CONFIG_I2C || CONFIG_SPI)
	select CONFIG_IIO_BUFFER
	select CONFIG_IIO_TRIGGERED_BUFFER
	select CONFIG_HTS221_I2C if (CONFIG_I2C)
	select CONFIG_HTS221_SPI if (CONFIG_SPI_MASTER)
	help
	  Say yes here to build support for STMicroelectronics CONFIG_HTS221
	  temperature-humidity sensor

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

config CONFIG_HTS221_I2C
	tristate
	depends on CONFIG_HTS221

config CONFIG_HTS221_SPI
	tristate
	depends on CONFIG_HTS221

config CONFIG_HTU21
	tristate "Measurement Specialties HTU21 humidity & temperature sensor"
	depends on CONFIG_I2C
        select CONFIG_IIO_MS_SENSORS_I2C
	help
	  If you say yes here you get support for the Measurement Specialties
	  CONFIG_HTU21 humidity and temperature sensor.
	  This driver is also used for MS8607 temperature, pressure & humidity
	  sensor

	  This driver can also be built as a module. If so, the module will
	  be called htu21.

config CONFIG_SI7005
	tristate "SI7005 relative humidity and temperature sensor"
	depends on CONFIG_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 CONFIG_M here: the module
	  will be called si7005. This driver also
	  supports Hoperf TH02 Humidity and Temperature Sensor.

config CONFIG_SI7020
	tristate "Si7013/20/21 Relative Humidity and Temperature Sensors"
	depends on CONFIG_I2C
	help
	  Say yes here to build support for the Silicon Labs Si7013/20/21
	  Relative Humidity and Temperature Sensors. This driver also
	  supports Hoperf TH06 Humidity and Temperature Sensor.

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

endmenu