├── .gitignore ├── README.md ├── gazebo_tutorials ├── CMakeLists.txt ├── launch │ └── hello.launch ├── package.xml ├── src │ └── simple_world_plugin.cpp └── worlds │ └── hello.world ├── rrbot_control ├── CMakeLists.txt ├── config │ └── rrbot_control.yaml ├── launch │ ├── rrbot_control.launch │ ├── rrbot_rqt.launch │ └── rrbot_rqt.perspective └── package.xml ├── rrbot_description ├── CMakeLists.txt ├── launch │ ├── rrbot.rviz │ └── rrbot_rviz.launch ├── meshes │ └── hokuyo.dae ├── package.xml └── urdf │ ├── materials.xacro │ ├── rrbot.gazebo │ ├── rrbot.xacro │ └── rrbot.xml └── rrbot_gazebo ├── CMakeLists.txt ├── launch └── rrbot_world.launch ├── package.xml └── worlds └── rrbot.world /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/README.md -------------------------------------------------------------------------------- /gazebo_tutorials/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/gazebo_tutorials/CMakeLists.txt -------------------------------------------------------------------------------- /gazebo_tutorials/launch/hello.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/gazebo_tutorials/launch/hello.launch -------------------------------------------------------------------------------- /gazebo_tutorials/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/gazebo_tutorials/package.xml -------------------------------------------------------------------------------- /gazebo_tutorials/src/simple_world_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/gazebo_tutorials/src/simple_world_plugin.cpp -------------------------------------------------------------------------------- /gazebo_tutorials/worlds/hello.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/gazebo_tutorials/worlds/hello.world -------------------------------------------------------------------------------- /rrbot_control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_control/CMakeLists.txt -------------------------------------------------------------------------------- /rrbot_control/config/rrbot_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_control/config/rrbot_control.yaml -------------------------------------------------------------------------------- /rrbot_control/launch/rrbot_control.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_control/launch/rrbot_control.launch -------------------------------------------------------------------------------- /rrbot_control/launch/rrbot_rqt.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_control/launch/rrbot_rqt.launch -------------------------------------------------------------------------------- /rrbot_control/launch/rrbot_rqt.perspective: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_control/launch/rrbot_rqt.perspective -------------------------------------------------------------------------------- /rrbot_control/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_control/package.xml -------------------------------------------------------------------------------- /rrbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /rrbot_description/launch/rrbot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/launch/rrbot.rviz -------------------------------------------------------------------------------- /rrbot_description/launch/rrbot_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/launch/rrbot_rviz.launch -------------------------------------------------------------------------------- /rrbot_description/meshes/hokuyo.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/meshes/hokuyo.dae -------------------------------------------------------------------------------- /rrbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/package.xml -------------------------------------------------------------------------------- /rrbot_description/urdf/materials.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/urdf/materials.xacro -------------------------------------------------------------------------------- /rrbot_description/urdf/rrbot.gazebo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/urdf/rrbot.gazebo -------------------------------------------------------------------------------- /rrbot_description/urdf/rrbot.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/urdf/rrbot.xacro -------------------------------------------------------------------------------- /rrbot_description/urdf/rrbot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_description/urdf/rrbot.xml -------------------------------------------------------------------------------- /rrbot_gazebo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_gazebo/CMakeLists.txt -------------------------------------------------------------------------------- /rrbot_gazebo/launch/rrbot_world.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_gazebo/launch/rrbot_world.launch -------------------------------------------------------------------------------- /rrbot_gazebo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_gazebo/package.xml -------------------------------------------------------------------------------- /rrbot_gazebo/worlds/rrbot.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ros-simulation/gazebo_ros_demos/HEAD/rrbot_gazebo/worlds/rrbot.world --------------------------------------------------------------------------------