Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/iio/proximity/vl53l0x.txt
48523 views
1
ST VL53L0X ToF ranging sensor
2
3
Required properties:
4
- compatible: must be "st,vl53l0x"
5
- reg: i2c address where to find the device
6
7
Optional properties:
8
- interrupts: Interrupt for notifying that new measurement is ready.
9
If no interrupt is specified, polling is used.
10
11
Example:
12
13
vl53l0x@29 {
14
compatible = "st,vl53l0x";
15
reg = <0x29>;
16
interrupt-parent = <&gpio>;
17
interrupts = <23 IRQ_TYPE_EDGE_FALLING>;
18
};
19
20