![]() |
tof_imager_ros package from tof_imager_ros repotof_imager_ros |
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | Apache License 2.0 |
Build type | AMENT_PYTHON |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/adityakamath/tof_imager_ros.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2025-01-12 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Aditya Kamath
Authors
tof_imager_ros
ROS 2 package for the VL53L5CX and VL53L7CX ToF (8x8 Array) Imager. The same implementation works for both sensors without any additional configuration.
Note: This implementation is a bit over-engineered, as I have been experimenting with ROS 2 managed/lifecycle nodes using Python.
Implementation details
-
tof_imager_publisher
: This executable uses the vl53l5cx_python library to access sensor data (for both sensors) over I2C. Distance measurements from the sensor are converted to Pointcloud2 messages which are published periodically using a timer to the/pointcloud
topic. Additionally, the point cloud data can also be streamed via OSC (Open Sound Control) when enabled. The sensor works in 8x8 and 4x4 modes, with the resolution of 8x8 as default. This implementation is designed as a lifecycle component and can be run individually as well. -
tof_imager_launch.py
: This is the launch file that launchestof_imager_publisher
as a lifecycle node, loads its parameters, and then configures the sensor. The lifecycle node is first initialized, and then set to ‘configure’ from the launch file. The user then needs to activate the lifecycle node from a separate terminal.
Parameters
-
frame_id
: Parent frame for the Pointcloud2 message (Default:tof_frame
) -
resolution
: 4 for 4x4 OR 8 for 8x8 (Default:8
) -
mode
: 1 for Continuous mode OR 3 for Autonomous mode (Default:1
) -
ranging_freq
: Ranging frequency, limited to 15Hz for 8x8 and 60Hz for 4x4 (Default:15
) -
timer_period
: Timer period in seconds (Default:0.1
) -
osc_enable
: Enable/disable OSC streaming (Default:false
) -
osc_ip
: Target IP address for OSC messages (Default:127.0.0.1
) -
osc_port
: Target port for OSC messages (Default:8000
)
More info about the mode and ranging frequency parameters can be found in the Datasheets for VL53L5CX and VL53L7CX, and Guides for VL53L5CX and VL53L7CX.
OSC Output
When OSC is enabled, the node streams point cloud coordinates using the following OSC messages:
-
/tx
: Array of x coordinates -
/ty
: Array of y coordinates -
/tz
: Array of z coordinates
Each message contains a flattened array of the corresponding coordinate values from the point cloud.
How to use
- Connect the VL53L5CX or VL53L7CX to the I2C GPIO pins of a Raspberry Pi device:
- 3.3V to any 3.3V pin
- SDA to BCM 2
- SCL to BCM 3
- GND to any ground pin
- Enable and update I2C on the Raspberry Pi
Note: These steps are only for Ubuntu. For Raspbian, follow the steps here
- Enable I2C:
sudo apt install -y i2c-tools python3-pip
sudo pip3 install smbus2
- Update baud rate by editing the I2C setting in
/boot/firmware/config.txt
with the baud rate (1MHz in this case):
dtparam=i2c_arm=on,i2c_arm_baudrate=1000000
- Install the required libraries:
$ git clone https://github.com/Abstract-Horizon/vl53l5cx_python
$ cd vl53l5cx_python
$ sudo python3 setup.py install
$ pip3 install python-osc # For OSC functionality
- Clone this repository in a ROS 2 workspace. Check the
sensor_params.yaml
file in the config directory, and make any necessary changes. - Build the package and run the launch file:
ros2 launch tof_imager_ros tof_imager_launch.py
- From a separate terminal, activate the sensor:
ros2 lifecycle set /tof_imager activate
Results
This package was tested using both VL53L5CX ToF Imager and VL53L7CX and a Raspberry Pi 4 (4GB) running ROS 2 Humble.
The following results were achieved for the two devices:
VL53L5CX:
- With default I2C baud rates:
- resolution=8, ranging_freq=15Hz, Both modes: ~6.1Hz
- With I2C baud rate=1MHz:
- resolution=8, ranging_frequency=15Hz:
- Continuous mode, timer_period=0.1: ~15Hz
- Autonomous mode, timer_period=0.1: ~10Hz
- Autonomous mode, timer_period=0.01: ~15Hz
- resolution=4, ranging_frequency=60Hz:
- Both modes, timer_period=0.01: ~56.5Hz
- Both modes, timer_period=0.025: ~40Hz
- resolution=8, ranging_frequency=15Hz:
VL53L7CX:
- With I2C baud rate=1MHz:
- resolution=8, ranging_frequency=15Hz:
- Continuous mode: ~7Hz
- Autonomous mode: ~6Hz
- resolution=4, ranging_frequency=60Hz, Both modes: ~18Hz:
- resolution=8, ranging_frequency=15Hz: