├── LICENSE ├── README.md ├── assets ├── image-20221222235135071.png ├── image-20221223000324257.png ├── image-20221223000349549.png ├── image-20221223000411816.png ├── image-20221223000650800.png └── image-20221223000746586.png └── src ├── mbot ├── CMakeLists.txt ├── launch │ ├── mbot_double.launch │ ├── mbot_empty.launch │ ├── mbot_merge_map.launch │ ├── mbot_navigation.launch │ ├── mbot_single.launch │ ├── mbot_slam.launch │ └── mbot_world.launch ├── maps │ ├── mbot.pgm │ └── mbot.yaml ├── package.xml ├── param │ └── amcl_params.yaml ├── rviz │ ├── mbot.rviz │ └── mbot2.rviz └── scripts │ ├── odom_listener.py │ ├── set_goal.py │ ├── stabilization_demo.py │ ├── tracking_demo.py │ └── vel_publisher.py └── mbot_follower ├── CMakeLists.txt ├── launch ├── follower_2.launch └── follower_4.launch ├── package.xml └── scripts ├── robot_tf_broadcaster.py └── robot_tf_listener.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/README.md -------------------------------------------------------------------------------- /assets/image-20221222235135071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/assets/image-20221222235135071.png -------------------------------------------------------------------------------- /assets/image-20221223000324257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/assets/image-20221223000324257.png -------------------------------------------------------------------------------- /assets/image-20221223000349549.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/assets/image-20221223000349549.png -------------------------------------------------------------------------------- /assets/image-20221223000411816.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/assets/image-20221223000411816.png -------------------------------------------------------------------------------- /assets/image-20221223000650800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/assets/image-20221223000650800.png -------------------------------------------------------------------------------- /assets/image-20221223000746586.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/assets/image-20221223000746586.png -------------------------------------------------------------------------------- /src/mbot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbot/launch/mbot_double.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_double.launch -------------------------------------------------------------------------------- /src/mbot/launch/mbot_empty.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_empty.launch -------------------------------------------------------------------------------- /src/mbot/launch/mbot_merge_map.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_merge_map.launch -------------------------------------------------------------------------------- /src/mbot/launch/mbot_navigation.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_navigation.launch -------------------------------------------------------------------------------- /src/mbot/launch/mbot_single.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_single.launch -------------------------------------------------------------------------------- /src/mbot/launch/mbot_slam.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_slam.launch -------------------------------------------------------------------------------- /src/mbot/launch/mbot_world.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/launch/mbot_world.launch -------------------------------------------------------------------------------- /src/mbot/maps/mbot.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/maps/mbot.pgm -------------------------------------------------------------------------------- /src/mbot/maps/mbot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/maps/mbot.yaml -------------------------------------------------------------------------------- /src/mbot/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/package.xml -------------------------------------------------------------------------------- /src/mbot/param/amcl_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/param/amcl_params.yaml -------------------------------------------------------------------------------- /src/mbot/rviz/mbot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/rviz/mbot.rviz -------------------------------------------------------------------------------- /src/mbot/rviz/mbot2.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/rviz/mbot2.rviz -------------------------------------------------------------------------------- /src/mbot/scripts/odom_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/scripts/odom_listener.py -------------------------------------------------------------------------------- /src/mbot/scripts/set_goal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/scripts/set_goal.py -------------------------------------------------------------------------------- /src/mbot/scripts/stabilization_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/scripts/stabilization_demo.py -------------------------------------------------------------------------------- /src/mbot/scripts/tracking_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/scripts/tracking_demo.py -------------------------------------------------------------------------------- /src/mbot/scripts/vel_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot/scripts/vel_publisher.py -------------------------------------------------------------------------------- /src/mbot_follower/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot_follower/CMakeLists.txt -------------------------------------------------------------------------------- /src/mbot_follower/launch/follower_2.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot_follower/launch/follower_2.launch -------------------------------------------------------------------------------- /src/mbot_follower/launch/follower_4.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot_follower/launch/follower_4.launch -------------------------------------------------------------------------------- /src/mbot_follower/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot_follower/package.xml -------------------------------------------------------------------------------- /src/mbot_follower/scripts/robot_tf_broadcaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot_follower/scripts/robot_tf_broadcaster.py -------------------------------------------------------------------------------- /src/mbot_follower/scripts/robot_tf_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ultralyj/mbot/HEAD/src/mbot_follower/scripts/robot_tf_listener.py --------------------------------------------------------------------------------