No version for distro humble showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro jazzy showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
rolling

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro ardent showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro bouncy showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro crystal showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro eloquent showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro dashing showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro galactic showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro foxy showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro iron showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro lunar showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro jade showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro indigo showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro hydro showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro kinetic showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro melodic showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange

No version for distro noetic showing kilted. Known supported distros are highlighted in the buttons above.
Package symbol

mini_tof package from mini_tof repo

mini_tof

ROS Distro
kilted

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

ROS 2 Package for interfacing with miniature ToF sensors

Additional Links

Maintainers

  • Carter Sifferman

Authors

No additional 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

  1. 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
    
  1. 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 the package.xml files in the mini_tof and mini_tof_interfaces packages for a list of dependencies.

  1. 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:

  1. tof_publisher: Publishes data reported by the sensor (e.g. distance, ambient light, histograms) to ROS 2 topics.
  2. 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'
        ),
    ])

File truncated at 100 lines see the full file

CHANGELOG
No CHANGELOG found.

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

No dependencies on ROS packages.

System Dependencies

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged mini_tof at Robotics Stack Exchange