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

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~
No version for distro jazzy showing github. Known supported distros are highlighted in the buttons above.
Repo symbol

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~
No version for distro kilted showing github. Known supported distros are highlighted in the buttons above.
Repo symbol

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~
No version for distro rolling showing github. Known supported distros are highlighted in the buttons above.
Repo symbol

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~
Repo symbol

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~
No version for distro galactic showing github. Known supported distros are highlighted in the buttons above.
Repo symbol

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~
No version for distro iron showing github. Known supported distros are highlighted in the buttons above.
Repo symbol

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~

Repository Summary

Description Software for iClebo Kobuki
Checkout URI https://github.com/yujinrobot/kobuki.git
VCS Type git
VCS Version melodic
Last Updated 2023-10-11
Dev Status MAINTAINED
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

README

Kobuki
======

This repository holds the ROS wrapper of [Kobuki's C++ driver](https://github.com/yujinrobot/kobuki_core) plus various ROS tools and applications.

![Kobuki Logo](http://kobuki.yujinrobot.com/wp-content/uploads/2015/07/iclebo-kobuki-logo-e1437635225432.png)

### Documentation ###

* [Official Web Page](http://kobuki.yujinrobot.com) - home page, sales, specifications and hardware howto.
* [Protocol, Usage and Api Documentation](http://yujinrobot.github.com/kobuki/doxygen/index.html) - in doxygen.
* [Ros Usage and Tutorials](http://www.ros.org/wiki/kobuki) - on the roswiki.
* [Turtlebot Reference Platform](http://www.ros.org/wiki/Robots/TurtleBot) - kobuki has been designed to meet the requirements of [ROS REP #119](http://www.ros.org/reps/rep-0119.html) to support turtlebot.




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

kobuki repository

kobuki

ROS Distro
github

Repository Summary

Description
Checkout URI https://github.com/intelligentroboticslabs/kobuki.git
VCS Type git
VCS Version jazzy
Last Updated 2025-11-24
Dev Status UNKNOWN
Released UNRELEASED
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Packages

Name Version
kobuki 1.0.0

README

Kobuki from Intelligent Robotics Lab using ROS 2

distro distro jazzy jazzy-devel badge

This project contains the launchers to run the Turtlebot2 Kobuki, both in simulated running different Gazebo worlds, as in the real robot using its drivers.

Installation on your own computer

You need to have previously installed ROS2. Please follow this guide if you don’t have it.

source /opt/ros/jazzy/setup.bash

Clone the repository to your workspace:

cd <ros2-workspace>/src
git clone https://github.com/IntelligentRoboticsLabs/kobuki.git -b jazzy

Prepare your thirparty repos:

sudo apt update && sudo apt install ros-dev-tools -y
cd <ros2-workspace>/src/
vcs import < kobuki/thirdparty.repos

Please make sure that this last command has not failed. If this happens, run it again.

Install libusb, libftdi & libuvc

sudo apt install libusb-1.0-0-dev libftdi1-dev libuvc-dev

Install udev rules from astra camera, kobuki and rplidar

When you connect a piece of hardware to your pc, it assigns /dev/ttyUSB* to it. This will not have the necessary read/write permissions, so we will not be able to use it correctly. The solution is to set up some udev rules that creates a symlink with another name (example: /dev/ttyUSB0 -> /dev/kobuki) and grants it the necessary permissions.

cd <ros2-workspace>
sudo cp src/ThirdParty/ros_astra_camera/astra_camera/scripts/56-orbbec-usb.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/rplidar_ros/scripts/rplidar.rules /etc/udev/rules.d/
sudo cp src/ThirdParty/kobuki_ros/60-kobuki.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules && sudo udevadm trigger

Building project

sudo rosdep init
rosdep update
rosdep install --from-paths src --ignore-src -r -y
colcon build --symlink-install 

If your terminal has crashed or closed while compiling, please try compiling your packages as follows colcon build --symlink-install --parallel-workers 1 or do so by selecting the package that failed colcon build --symlink-install --parallel-workers 1 --packages-select <package>

Also, if you want to prevent it from recompiling that package, add a COLCON_IGNORE inside the package

Run the robot in ROS 2

Run Gazebo

You can launch the simulator as follows:

ros2 launch kobuki simulation.launch.py

Or you can add the path of your world to the world parameter like this:

ros2 launch kobuki simulation.launch.py world:=install/aws_robomaker_small_warehouse_world/share/aws_robomaker_small_warehouse_world/worlds/small_warehouse/small_warehouse.world

Run a real kobuki

Run the kobuki drivers:

ros2 launch kobuki kobuki.launch.py

If you want to use a lidar or camera, you have to set the following parameters to true:

ros2 launch kobuki kobuki.launch.py lidar_a2:=true
ros2 launch kobuki kobuki.launch.py lidar_s2:=true
ros2 launch kobuki kobuki.launch.py xtion:=true
ros2 launch kobuki kobuki.launch.py astra:=true

Run Navigation in ROS 2

You can use Nav2 using robot with this launcher:

ros2 launch kobuki navigation.launch.py map:=<path-to-map>

or this other command if you need to navigate in the simulator

```bash

File truncated at 100 lines see the full file

CONTRIBUTING

Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:

5. Submission of Contributions. Unless You explicitly state otherwise,
   any Contribution intentionally submitted for inclusion in the Work
   by You to the Licensor shall be under the terms and conditions of
   this License, without any additional terms or conditions.
   Notwithstanding the above, nothing herein shall supersede or modify
   the terms of any separate license agreement you may have executed
   with Licensor regarding such Contributions.
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that [license](http://www.apache.org/licenses/LICENSE-2.0.html): ~~~ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. ~~~