No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.

Package Summary

Tags No category tags.
Version 0.0.0
License TODO: License declaration
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/robotisim/robotics_software_engineer.git
VCS Type git
VCS Version main
Last Updated 2025-01-24
Dev Status UNMAINTAINED
CI status No Continuous Integration
Released UNRELEASED
Tags No category tags.
Contributing Help Wanted (0)
Good First Issues (0)
Pull Requests to Review (0)

Package Description

TODO: Package description

Additional Links

No additional links.

Maintainers

  • luqman

Authors

No additional authors.

Introduction

The robot_sensing package is designed to simulate and control robots equipped with various sensors, particularly in environments like mazes and line-following tracks. This package provides launch files and nodes for maze solving using LIDAR and line following using a camera sensor. It serves as an educational tool for understanding how sensors can be used to guide robots in complex environments using ROS 2.

How to Run

System Requirements: ROS 2 Humble on Ubuntu 22.04 (tested).

To build the package:

colcon build --packages-select robot_sensing

To source the setup file:

source install/setup.bash

Running Simulations

  • Maze Solving with LIDAR:
  ros2 launch robot_sensing lidar_maze_solving.launch.py
  
  • Line Following with Camera:
  ros2 launch robot_sensing camera_line_following.launch.py
  
  • Custom Sensor Setup in Gazebo:
  ros2 launch robot_sensing custom_sensors.launch.py
  

Note: File names might have changed since the initial lectures, as this represents the final form of the package as it evolved by the last lecture.

Source Files and Launch Files

Source Files

  1. line_following_with_camera.cpp
    • Purpose: Implements the logic for a robot to follow a line using input from a camera sensor. The algorithm processes the camera feed to detect the line and generate velocity commands to keep the robot on track.
    • Algorithm: Uses computer vision techniques to identify the line and a proportional controller to adjust the robot’s steering based on the line’s position relative to the robot.
  2. maze_solving_with_lidar.cpp
    • Purpose: Implements a maze-solving algorithm that uses LIDAR data to navigate through a maze. The robot scans its environment and makes decisions based on detected obstacles.
    • Algorithm: The robot uses a wall-following algorithm, combined with LIDAR data, to systematically explore and find the exit of the maze.

Launch Files

  1. camera_line_following.launch.py
    • Purpose: Launches a simulation environment for line following using a camera in Gazebo.
    • Nodes Launched:
      • robot_state_publisher - Publishes the robot’s URDF to the TF tree.
      • gazebo_ros - Spawns the robot in a Gazebo world configured for line following.
      • line_following - The node that controls the robot to follow the line based on camera input.
  2. lidar_maze_solving.launch.py
    • Purpose: Launches a maze-solving simulation using LIDAR data in Gazebo.
    • Nodes Launched:
      • robot_state_publisher - Publishes the robot’s URDF to the TF tree.
      • gazebo_ros - Spawns the robot in a Gazebo world configured as a maze.
      • maze_solver - The node that drives the robot through the maze using LIDAR input.
  3. custom_sensors.launch.py
    • Purpose: Launches a custom sensor setup in Gazebo, allowing for the simulation of different sensors on the robot.
    • Nodes Launched:
      • robot_state_publisher - Publishes the robot’s URDF to the TF tree.
      • joint_state_publisher - Publishes joint states for the robot in Gazebo.
      • gazebo_ros - Spawns the robot in Gazebo with custom sensor configurations.

Package Dependencies

The CMakeLists.txt file specifies the necessary dependencies for building and running the robot_sensing package:

  • Dependencies:
    • rclcpp - ROS 2 C++ API for creating nodes, publishers, and subscribers.
    • sensor_msgs - ROS 2 message types for handling sensor data.
    • geometry_msgs - ROS 2 message types for geometry data, including velocity commands for the robot.
    • gazebo_ros - Integration with the Gazebo simulator for launching and controlling the robot in a simulated environment.

Test your Learnings with Assignments

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

System Dependencies

No direct 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 robot_sensing at Robotics Stack Exchange

No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.