1. Overview

What is dyros_robot_controller?

Dyros Robot Controller is a versatile ROS2-based control package that implements control algorithms for various types of robots, including mobile robots, manipulators, and mobile manipulators.

It is designed to work seamlessly in both simulation and real-robot environments, enabling rapid development and testing of advanced control strategies.

Key features

Untitled

How to install dyros_robot_controller?

  1. Install dependencies

  2. Move to your ros2 workspace

    cd ros2_ws
    
  3. Clone the git repository

    git clone <https://github.com/JunHeonYoon/dyros_robot_controller.git> src
    
  4. Build the package and source the ros2 workspace

    colcon build --symlink-install
    source install/setup.bash
    

Examples

Examples require the installation of the MuJOCo simulator.

  1. Install MuJoCo

    git clone <https://github.com/deepmind/mujoco.git>
    mkdir build && cd build
    cmake ..
    cmake --build .
    cmake --install .
    
  2. Install MuJoCo-py

    pip3 install mujoco