1# 2# Temperature sensor drivers 3# 4menu "Temperature sensors" 5 6config MLX90614 7 tristate "MLX90614 contact-less infrared sensor" 8 depends on I2C 9 help 10 If you say yes here you get support for the Melexis 11 MLX90614 contact-less infrared sensor connected with I2C. 12 13 This driver can also be built as a module. If so, the module will 14 be called mlx90614. 15 16config TMP006 17 tristate "TMP006 infrared thermopile sensor" 18 depends on I2C 19 help 20 If you say yes here you get support for the Texas Instruments 21 TMP006 infrared thermopile sensor. 22 23 This driver can also be built as a module. If so, the module will 24 be called tmp006. 25 26config TSYS01 27 tristate "Measurement Specialties TSYS01 temperature sensor using I2C bus connection" 28 depends on I2C 29 select IIO_MS_SENSORS_I2C 30 help 31 If you say yes here you get support for the Measurement Specialties 32 TSYS01 I2C temperature sensor. 33 34 This driver can also be built as a module. If so, the module will 35 be called tsys01. 36 37config TSYS02D 38 tristate "Measurement Specialties TSYS02D temperature sensor" 39 depends on I2C 40 select IIO_MS_SENSORS_I2C 41 help 42 If you say yes here you get support for the Measurement Specialties 43 TSYS02D temperature sensor. 44 45 This driver can also be built as a module. If so, the module will 46 be called tsys02d. 47 48endmenu 49