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.

omnidirectional_controllers package from omnidirectional_controllers repo

omnidirectional_controllers

Package Summary

Tags No category tags.
Version 0.0.0
License MIT
Build type AMENT_CMAKE
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/mateusmenezes95/omnidirectional_controllers.git
VCS Type git
VCS Version humble
Last Updated 2024-04-11
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

Controller for a omnidirectional robot with three wheels

Additional Links

No additional links.

Maintainers

  • Mateus Menezes

Authors

No additional authors.

Omnidirectional Controllers

This package provides ROS 2 controllers for controlling Omnidirectional robots with three wheels. It is based on the concepts of ros2_control and ros2_controllers. Initially, only forward and inverse kinematics, based solely on the diff_drive_controller, and odometry calculation have been implemented. The input for control is robot body velocity ($\dot{x}$, $\dot{y}$, $\dot{\theta}$) commands, which are translated into wheel commands ($\omega_1$, $\omega_2$, $\omega_3$) for an omnidirectional robot with three wheels. Odometry is computed from hardware feedback and published. It is worth noting that there are plans to further develop advanced linear and non-linear controllers, such as Model Predictive Control (MPC).

See the documentation Omnidirectional Robot Kinematics and Odometry for more details.

Author: Mateus Menezes
Maintainer: Mateus Menezes, mateusmenezes95@gmail.com

Build status

ROS2 Distro Branch Build status
Humble humble Build From Source

Installation Premises

  1. This repository has been tested on [ROS2 Humble] and with Classic Gazebo 11;

  2. These instructions assume that you have already installed ROS2 Humble Hawskbill on your machine. If not, please follow the recommended recommended ubuntu installation tutorial;

  3. Before installing the package, you will need to have an ament workspace set up. If you don’t have one, follow the instructions in the Creating a workspace tutorial. Once you have created the workspace, clone this repository in the source folder of your workspace.

Installation

ATTENTION: These commands assume that you have created a workspace called “ros_ws” in your home folder. If you used a different directory or name, please adjust the commands accordingly.

After installing ROS2 and creating the workspace, clone this repository in your workspace:

cd ~/ros_ws/src
git clone https://github.com/mateusmenezes95/omnidirectional_controllers

Install the binary dependencies by running the following command in the root of your workspace:

cd ~/ros_ws
rosdep init
rosdep update
sudo apt update
rosdep install --from-paths src/omnidirectional_controllers --ignore-src -r -y --rosdistro humble

If all dependencies are already installed, you should see the message “All required rosdeps installed successfully.”

Building

Run the following command to build the package:

cd ~/ros_ws
colcon build --symlink-install --event-handlers console_direct+

Run colcon build --help to understand the arguments passed! If you want to generate the compile_commands.json file, add the argument --cmake-args -DCMAKE_EXPORT_COMPILE_COMMANDS=1 to the command above.

After building the package, open a new terminal and navigate to your workspace. Then, source the overlay by running the following command:

source /opt/ros/foxy/setup.bash
cd ~/ros_ws
. install/local_setup.bash

See Source the overlay to learn about underlay and overlay concepts.

Usage

You must follow the three steps explained in Running the Framework for Your Robot tutorial.

For an concrete example of how to use the Omnidirectional controllers, refer to the Axebot simulation’s controller configuration, ros2_control URDF, and launch file.

Subscribed Topic

  • /omnidirectional_controller/cmd_vel_unstamped (geometry_msgs/msg/Twist)

    Velocity twist from which the controller extracts the x and y component of the linear velocity and the z component of the angular velocity. Velocities on other components are ignored.

Published Topic

  • /omnidirectional_controller/odom (nav_msgs/msg/Odometry)

    Robot odometry. The odometry can be computed from hardware feedback or using an open-loop approach, in which the integration is performed using the Twist command. You can select the approach in the configuration file. Additionally, you can choose either the Runge-Kutta or Euler Forward integration method.

Unit Test

TODO

Bugs & Feature Requests

Please report bugs and request features using the Issue Tracker

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.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged omnidirectional_controllers 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.