├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json └── settings.json ├── README.md └── src ├── fishbot_bringup ├── CMakeLists.txt ├── launch │ ├── bringup.launch.py │ ├── bringup_quick.launch.py │ └── urdf2tf.launch.py ├── package.xml └── src │ └── odom2tf.cpp ├── fishbot_cartographer ├── CMakeLists.txt ├── config │ ├── cartographer.rviz │ ├── fishbot_2d.lua │ └── fishbot_laser_2d.lua ├── launch │ └── cartographer.launch.py ├── map │ ├── fishbot_map.pgm │ ├── fishbot_map.png │ ├── fishbot_map.yaml │ ├── fishbot_workspace_map.pgm │ ├── fishbot_workspace_map.yaml │ ├── fishbot_workspace_map1.pgm │ └── fishbot_workspace_map1.yaml ├── package.xml └── rviz │ └── fishbot_cartographer.rviz ├── fishbot_description ├── CMakeLists.txt ├── package.xml └── urdf │ └── fishbot.urdf ├── fishbot_interfaces ├── CMakeLists.txt ├── msg │ └── MyCustomMessage.msg ├── package.xml └── srv │ └── FishBotConfig.srv └── fishbot_navigation2 ├── CMakeLists.txt ├── config └── nav2_params.yaml ├── launch └── navigation2.launch.py ├── maps ├── room.pgm └── room.yaml └── package.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/README.md -------------------------------------------------------------------------------- /src/fishbot_bringup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_bringup/CMakeLists.txt -------------------------------------------------------------------------------- /src/fishbot_bringup/launch/bringup.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_bringup/launch/bringup.launch.py -------------------------------------------------------------------------------- /src/fishbot_bringup/launch/bringup_quick.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_bringup/launch/bringup_quick.launch.py -------------------------------------------------------------------------------- /src/fishbot_bringup/launch/urdf2tf.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_bringup/launch/urdf2tf.launch.py -------------------------------------------------------------------------------- /src/fishbot_bringup/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_bringup/package.xml -------------------------------------------------------------------------------- /src/fishbot_bringup/src/odom2tf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_bringup/src/odom2tf.cpp -------------------------------------------------------------------------------- /src/fishbot_cartographer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/CMakeLists.txt -------------------------------------------------------------------------------- /src/fishbot_cartographer/config/cartographer.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/config/cartographer.rviz -------------------------------------------------------------------------------- /src/fishbot_cartographer/config/fishbot_2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/config/fishbot_2d.lua -------------------------------------------------------------------------------- /src/fishbot_cartographer/config/fishbot_laser_2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/config/fishbot_laser_2d.lua -------------------------------------------------------------------------------- /src/fishbot_cartographer/launch/cartographer.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/launch/cartographer.launch.py -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_map.pgm -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_map.png -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_map.yaml -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_workspace_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_workspace_map.pgm -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_workspace_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_workspace_map.yaml -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_workspace_map1.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_workspace_map1.pgm -------------------------------------------------------------------------------- /src/fishbot_cartographer/map/fishbot_workspace_map1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/map/fishbot_workspace_map1.yaml -------------------------------------------------------------------------------- /src/fishbot_cartographer/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/package.xml -------------------------------------------------------------------------------- /src/fishbot_cartographer/rviz/fishbot_cartographer.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_cartographer/rviz/fishbot_cartographer.rviz -------------------------------------------------------------------------------- /src/fishbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /src/fishbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_description/package.xml -------------------------------------------------------------------------------- /src/fishbot_description/urdf/fishbot.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_description/urdf/fishbot.urdf -------------------------------------------------------------------------------- /src/fishbot_interfaces/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_interfaces/CMakeLists.txt -------------------------------------------------------------------------------- /src/fishbot_interfaces/msg/MyCustomMessage.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_interfaces/msg/MyCustomMessage.msg -------------------------------------------------------------------------------- /src/fishbot_interfaces/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_interfaces/package.xml -------------------------------------------------------------------------------- /src/fishbot_interfaces/srv/FishBotConfig.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_interfaces/srv/FishBotConfig.srv -------------------------------------------------------------------------------- /src/fishbot_navigation2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_navigation2/CMakeLists.txt -------------------------------------------------------------------------------- /src/fishbot_navigation2/config/nav2_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_navigation2/config/nav2_params.yaml -------------------------------------------------------------------------------- /src/fishbot_navigation2/launch/navigation2.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_navigation2/launch/navigation2.launch.py -------------------------------------------------------------------------------- /src/fishbot_navigation2/maps/room.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_navigation2/maps/room.pgm -------------------------------------------------------------------------------- /src/fishbot_navigation2/maps/room.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_navigation2/maps/room.yaml -------------------------------------------------------------------------------- /src/fishbot_navigation2/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishros/fishbot_nav/HEAD/src/fishbot_navigation2/package.xml --------------------------------------------------------------------------------