Turtlebot3 gazebo simulation package for ROːBIT internship education.
C++Apache-2.0
turtlebot3_simulations_internship
Installation
Install the dependencies
$ sudo apt-get install -y ros-humble-gazebo-*
Clone the repository
$ cd~/{Your ROS 2 Workspace}/src
$ git clone https://github.com/Team-ROBIT/turtlebot3_simulations_internship.git
$ cd turtlebot3_simulations_internship
$ git submodule update --init --recursive # Not necessary if you already have the submodules
$ gedit ~/.bashrc
# Add the following lineexport TURTLEBOT3_MODEL=burger # Turtlebot3 modelexport ROS_DOMAIN_ID=${Your ROS 2 domain ID}# ROS 2 domain ID. Make sure not to use the same domain ID as the other person. source /usr/share/gazebo/setup.sh # Gazebo setupalias killg='killall -9 gzserver && killall -9 gzclient && killall -9 rosmaster'# Kill Gazebo, Gazebo client and Ros master