1# 2# Proximity sensors 3# 4 5menu "Lightning sensors" 6 7config AS3935 8 tristate "AS3935 Franklin lightning sensor" 9 select IIO_BUFFER 10 select IIO_TRIGGERED_BUFFER 11 depends on SPI 12 help 13 Say Y here to build SPI interface support for the Austrian 14 Microsystems AS3935 lightning detection sensor. 15 16 To compile this driver as a module, choose M here: the 17 module will be called as3935 18 19endmenu 20 21menu "Proximity and distance sensors" 22 23config LIDAR_LITE_V2 24 tristate "PulsedLight LIDAR sensor" 25 select IIO_BUFFER 26 select IIO_TRIGGERED_BUFFER 27 depends on I2C 28 help 29 Say Y to build a driver for PulsedLight LIDAR range finding 30 sensor. 31 32 To compile this driver as a module, choose M here: the 33 module will be called pulsedlight-lite-v2 34 35config RFD77402 36 tristate "RFD77402 ToF sensor" 37 depends on I2C 38 help 39 Say Y to build a driver for the RFD77420 Time-of-Flight (distance) 40 sensor module with I2C interface. 41 42 To compile this driver as a module, choose M here: the 43 module will be called rfd77402. 44 45config SRF04 46 tristate "Devantech SRF04 ultrasonic ranger sensor" 47 depends on GPIOLIB 48 help 49 Say Y here to build a driver for Devantech SRF04 ultrasonic 50 ranger sensor. This driver can be used to measure the distance 51 of objects. It is using two GPIOs. 52 53 To compile this driver as a module, choose M here: the 54 module will be called srf04. 55 56config SX9500 57 tristate "SX9500 Semtech proximity sensor" 58 select IIO_BUFFER 59 select IIO_TRIGGERED_BUFFER 60 select REGMAP_I2C 61 depends on I2C 62 help 63 Say Y here to build a driver for Semtech's SX9500 capacitive 64 proximity/button sensor. 65 66 To compile this driver as a module, choose M here: the 67 module will be called sx9500. 68 69config SRF08 70 tristate "Devantech SRF02/SRF08/SRF10 ultrasonic ranger sensor" 71 select IIO_BUFFER 72 select IIO_TRIGGERED_BUFFER 73 depends on I2C 74 help 75 Say Y here to build a driver for Devantech SRF02/SRF08/SRF10 76 ultrasonic ranger sensors with i2c interface. 77 This driver can be used to measure the distance of objects. 78 79 To compile this driver as a module, choose M here: the 80 module will be called srf08. 81 82endmenu 83