VL53L0X is a Time-of-Flight (ToF) ranging sensor. It is produced by STMicroelectronics: http://www.st.com/en/imaging-and-photonics-solutions/vl53l0x.html
The carriers for the sensor can be found here:
This package contains a Node-RED Node interface for interacting and retrieving the range distance with the VL53L0X sensor.
Communicating to the sensor is done over I2C. I2C must be enabled on the Raspberry PI. See the Raspberry Pi SPI and I2C Tutorial for instructions on how to enable I2C.
The Node-RED VL53L0X Node has a few parameters that must be configured:
- Bus: This is the bus number the VL53L0X is connected to. The default is ic2-1.
- Bus Address: This is the address of the VL53L0X. The VL53L0X has an address of 41 (0x29) by default.
- Poll Interval: This is how often the distance in millimeters is read from the VL53L0X
- Name: (optional)
start or stop must be passed into the node to start or stop the polling. Push msg = {payload : start | stop} to start | stop the flow.
- The distance in mm is returned as part of the payload.
- Only doing minimal init and running in "default mode" which is good to about 1200 mm.
- Calibration routines are not executed on the VL53L0X. A simple calibration tweak routine on the range data is used instead.
- Using continuous ranging measurements.