1ST VL53L0X ToF ranging sensor
2
3Required properties:
4	- compatible: must be "st,vl53l0x"
5	- reg: i2c address where to find the device
6
7Optional properties:
8	- interrupts:	Interrupt for notifying that new measurement is ready.
9			If no interrupt is specified, polling is used.
10
11Example:
12
13vl53l0x@29 {
14	compatible = "st,vl53l0x";
15	reg = <0x29>;
16	interrupt-parent = <&gpio>;
17	interrupts = <23 IRQ_TYPE_EDGE_FALLING>;
18};
19