Package Summary
Tags | No category tags. |
Version | 0.1.0 |
License | Apache-2.0 |
Build type | AMENT_PYTHON |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/uwgraphics/mini_tof.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-03-20 |
Dev Status | MAINTAINED |
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
- Carter Sifferman
Authors
Mini ToF
ROS 2 package for interfacing with miniature ToF sensors without any hardware or firmware expertise required. This package includes support for capturing raw histogram data from the sensors, which has been studied in academic work for many applications like object detection [1], 3D reconstruction[2, 3, 4], and even seeing around corners[5, 6].
Currently supported sensors:
- AMS TMF882X (TMF8820, TMF8821, TMF8828)
- ST VL53L8CH
See the mini_tof_firmware repository for information about supported hardware (sensors and microcontollers).
Related Packages
mini_tof_interfaces is a ROS 2 package containing the ROS 2 interface definitions for this package.
mini_tof_firmware is a GitHub repository containing microcontroller firmware necessary for using this package.
Installation
Install ROS Package
Option 1: Install pre-built binary from command line
This option is coming soon. For now, you must build from source.
Option 2: Build from Source
- Clone this repo and the interfaces package to the
src
directory of your ROS 2 workspace:
cd ~/ros2_ws/src
git clone git@github.com:uwgraphics/mini_tof.git
git clone git@github.com:uwgraphics/mini_tof_interfaces.git
- Install python dependencies using rosdep:
cd ~/ros2_ws
rosdep install --from-paths src --ignore-src -r -y
Note: If you encounter issues with
rosdep
, you can also install packages manually. Refer to thepackage.xml
files in themini_tof
andmini_tof_interfaces
packages for a list of dependencies.
- Build the workspace
cd ~/ros2_ws
colcon build --symlink-install
Hardware, Microcontroller Setup, and Firmware
To use this package, a microcontroller must be connected to the ToF sensor and run firmware that communicates with the sensor and ROS 2. Follow the steps in the README for the mini_tof_firmware repository to set up the microcontroller and upload the firmware.
Usage
The mini_tof
package is meant to be a simple, lightweight package which passes along information reported by miniature time-of-flight sensors to ROS 2 topics. There are only two nodes in the package:
-
tof_publisher
: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics. -
tof_visualizer
: Visualizes the data reported by the sensor in real time using PyQtGraph.
Command line
Launch a publisher node for the TMF882X sensor with:
ros2 run mini_tof tof_publisher --ros-args -p mcu_port:=/dev/ttyACM0 -p sensor_model:=TMF882X
Or launch a publisher node for the VL53L8CH sensor with:
ros2 run mini_tof tof_publisher --ros-args -p mcu_port:=/dev/ttyUSB0 -p sensor_model:=VL53L8CH -p num_zones:=16
Check that messages are getting published to the mini_tof_data
topic with:
ros2 topic echo /mini_tof_data
Visualize the reported data in real time with:
ros2 run mini_tof tof_visualizer
Launch files
Like any ROS node, the publisher and visualizer can also be launched via launch files. An example launch file for the VL53L8CH sensor looks like:
from launch import LaunchDescription
from launch.actions import IncludeLaunchDescription
from launch_ros.actions import Node
def generate_launch_description():
return LaunchDescription([
Node(
package='mini_tof',
name='tof_publisher',
executable='tof_publisher',
output='screen',
parameters=[{
'mcu_port': '/dev/ttyUSB0',
'sensor_model': 'VL53L8CH',
'num_zones': 16
}]
),
Node(
package='mini_tof',
name='tof_visualizer',
executable='tof_visualizer',
output='screen'
),
])
Troubleshooting
If you run into any problems, please open an issue on this repository and an author will help you out.