├── CMakeLists.txt ├── RIKIROBOT 使用文档 V1.0.pdf ├── TurtleBot3 汉堡(burger)机器人 用户操作手册.pdf ├── config ├── costmap_common.yaml ├── costmap_exploration.yaml ├── costmap_global_laser.yaml ├── costmap_global_static.yaml ├── costmap_local.yaml ├── f310.config.yaml ├── f310.config.yaml~ └── planner.yaml ├── launch ├── explore_namespace.launch ├── explore_three.launch ├── explore_three_robots.launch ├── exploring_three.launch ├── gmapping.launch ├── gmapping_namespace.launch ├── gmapping_three.launch ├── initposes.launch ├── map_merge.launch ├── move_base_namespace.launch ├── move_base_three.launch ├── multi_turtlebot3_gazebo.launch ├── navigation_three.launch ├── three_robots.launch └── two_robots_exploration │ ├── exploring_two.launch │ ├── initposes_two.launch │ ├── map_merge_two.launch │ └── move_base_two.launch ├── models └── watkinslab │ ├── model.config │ └── model.sdf ├── package.xml ├── param └── amcl_params.yaml ├── readme.md ├── rviz ├── three.rviz ├── three_tb3_one_map_exploration.rviz ├── three_tb3_one_map_threegoals.rviz ├── turtlebot3_navigation.rviz ├── two.rviz ├── two_tb3_one_map_twogoals.rviz └── urdf_test.rviz └── worlds ├── MTR.world ├── MTR_map.dae ├── house.world ├── largeMap.dae ├── largeMap.world └── lobby_stairs.world /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /RIKIROBOT 使用文档 V1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/RIKIROBOT 使用文档 V1.0.pdf -------------------------------------------------------------------------------- /TurtleBot3 汉堡(burger)机器人 用户操作手册.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/TurtleBot3 汉堡(burger)机器人 用户操作手册.pdf -------------------------------------------------------------------------------- /config/costmap_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/costmap_common.yaml -------------------------------------------------------------------------------- /config/costmap_exploration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/costmap_exploration.yaml -------------------------------------------------------------------------------- /config/costmap_global_laser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/costmap_global_laser.yaml -------------------------------------------------------------------------------- /config/costmap_global_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/costmap_global_static.yaml -------------------------------------------------------------------------------- /config/costmap_local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/costmap_local.yaml -------------------------------------------------------------------------------- /config/f310.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/f310.config.yaml -------------------------------------------------------------------------------- /config/f310.config.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/f310.config.yaml~ -------------------------------------------------------------------------------- /config/planner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/config/planner.yaml -------------------------------------------------------------------------------- /launch/explore_namespace.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/explore_namespace.launch -------------------------------------------------------------------------------- /launch/explore_three.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/explore_three.launch -------------------------------------------------------------------------------- /launch/explore_three_robots.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/explore_three_robots.launch -------------------------------------------------------------------------------- /launch/exploring_three.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/exploring_three.launch -------------------------------------------------------------------------------- /launch/gmapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/gmapping.launch -------------------------------------------------------------------------------- /launch/gmapping_namespace.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/gmapping_namespace.launch -------------------------------------------------------------------------------- /launch/gmapping_three.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/gmapping_three.launch -------------------------------------------------------------------------------- /launch/initposes.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/initposes.launch -------------------------------------------------------------------------------- /launch/map_merge.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/map_merge.launch -------------------------------------------------------------------------------- /launch/move_base_namespace.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/move_base_namespace.launch -------------------------------------------------------------------------------- /launch/move_base_three.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/move_base_three.launch -------------------------------------------------------------------------------- /launch/multi_turtlebot3_gazebo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/multi_turtlebot3_gazebo.launch -------------------------------------------------------------------------------- /launch/navigation_three.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/navigation_three.launch -------------------------------------------------------------------------------- /launch/three_robots.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/three_robots.launch -------------------------------------------------------------------------------- /launch/two_robots_exploration/exploring_two.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/two_robots_exploration/exploring_two.launch -------------------------------------------------------------------------------- /launch/two_robots_exploration/initposes_two.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/two_robots_exploration/initposes_two.launch -------------------------------------------------------------------------------- /launch/two_robots_exploration/map_merge_two.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/two_robots_exploration/map_merge_two.launch -------------------------------------------------------------------------------- /launch/two_robots_exploration/move_base_two.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/launch/two_robots_exploration/move_base_two.launch -------------------------------------------------------------------------------- /models/watkinslab/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/models/watkinslab/model.config -------------------------------------------------------------------------------- /models/watkinslab/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/models/watkinslab/model.sdf -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/package.xml -------------------------------------------------------------------------------- /param/amcl_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/param/amcl_params.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/readme.md -------------------------------------------------------------------------------- /rviz/three.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/three.rviz -------------------------------------------------------------------------------- /rviz/three_tb3_one_map_exploration.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/three_tb3_one_map_exploration.rviz -------------------------------------------------------------------------------- /rviz/three_tb3_one_map_threegoals.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/three_tb3_one_map_threegoals.rviz -------------------------------------------------------------------------------- /rviz/turtlebot3_navigation.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/turtlebot3_navigation.rviz -------------------------------------------------------------------------------- /rviz/two.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/two.rviz -------------------------------------------------------------------------------- /rviz/two_tb3_one_map_twogoals.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/two_tb3_one_map_twogoals.rviz -------------------------------------------------------------------------------- /rviz/urdf_test.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/rviz/urdf_test.rviz -------------------------------------------------------------------------------- /worlds/MTR.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/worlds/MTR.world -------------------------------------------------------------------------------- /worlds/MTR_map.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/worlds/MTR_map.dae -------------------------------------------------------------------------------- /worlds/house.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/worlds/house.world -------------------------------------------------------------------------------- /worlds/largeMap.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/worlds/largeMap.dae -------------------------------------------------------------------------------- /worlds/largeMap.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/worlds/largeMap.world -------------------------------------------------------------------------------- /worlds/lobby_stairs.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GradyM2M/multi_turtlebot3_navigation/HEAD/worlds/lobby_stairs.world --------------------------------------------------------------------------------