lin
2025-08-21 57113df3a0e2be01232281fad9a5f2c060567981
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# humidity sensor drivers
#
menu "Humidity sensors"
 
config AM2315
    tristate "Aosong AM2315 relative humidity and temperature sensor"
    depends on I2C
    select IIO_BUFFER
    select IIO_TRIGGERED_BUFFER
    help
      If you say yes here you get support for the Aosong 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 DHT11
   tristate "DHT11 (and compatible sensors) driver"
   depends on GPIOLIB || COMPILE_TEST
   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.
 
config HDC100X
   tristate "TI HDC100x relative humidity and temperature sensor"
   depends on I2C
   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 M here: the module
     will be called hdc100x.
 
config HTU21
   tristate "Measurement Specialties HTU21 humidity & temperature sensor"
   depends on I2C
        select IIO_MS_SENSORS_I2C
   help
     If you say yes here you get support for the Measurement Specialties
     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 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. This driver also
     supports Hoperf TH02 Humidity and Temperature Sensor.
 
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. This driver also
     supports Hoperf TH06 Humidity and Temperature Sensor.
 
     To compile this driver as a module, choose M here: the module
     will be called si7020.
 
endmenu