├── .vscode ├── c_cpp_properties.json └── settings.json ├── README.md ├── complete_boxs.png ├── random_world.png ├── spcbot_description ├── CMakeLists.txt ├── launch │ └── rviz.launch ├── meshes │ └── hokuyo.dae ├── package.xml ├── rviz │ └── spcbot.rviz └── urdf │ ├── materials.xacro │ ├── spcbot.gazebo.xacro │ └── spcbot.urdf.xacro ├── spcbot_gazebo ├── CMakeLists.txt ├── launch │ ├── spcbot_complete_boxs.launch │ └── spcbot_random.launch ├── package.xml └── worlds │ ├── complete_boxs.world │ └── random.world ├── spcbot_navigation ├── CMakeLists.txt ├── launch │ └── gmapping.launch └── package.xml └── with_rviz.png /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/README.md -------------------------------------------------------------------------------- /complete_boxs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/complete_boxs.png -------------------------------------------------------------------------------- /random_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/random_world.png -------------------------------------------------------------------------------- /spcbot_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/CMakeLists.txt -------------------------------------------------------------------------------- /spcbot_description/launch/rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/launch/rviz.launch -------------------------------------------------------------------------------- /spcbot_description/meshes/hokuyo.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/meshes/hokuyo.dae -------------------------------------------------------------------------------- /spcbot_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/package.xml -------------------------------------------------------------------------------- /spcbot_description/rviz/spcbot.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/rviz/spcbot.rviz -------------------------------------------------------------------------------- /spcbot_description/urdf/materials.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/urdf/materials.xacro -------------------------------------------------------------------------------- /spcbot_description/urdf/spcbot.gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/urdf/spcbot.gazebo.xacro -------------------------------------------------------------------------------- /spcbot_description/urdf/spcbot.urdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_description/urdf/spcbot.urdf.xacro -------------------------------------------------------------------------------- /spcbot_gazebo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_gazebo/CMakeLists.txt -------------------------------------------------------------------------------- /spcbot_gazebo/launch/spcbot_complete_boxs.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_gazebo/launch/spcbot_complete_boxs.launch -------------------------------------------------------------------------------- /spcbot_gazebo/launch/spcbot_random.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_gazebo/launch/spcbot_random.launch -------------------------------------------------------------------------------- /spcbot_gazebo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_gazebo/package.xml -------------------------------------------------------------------------------- /spcbot_gazebo/worlds/complete_boxs.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_gazebo/worlds/complete_boxs.world -------------------------------------------------------------------------------- /spcbot_gazebo/worlds/random.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_gazebo/worlds/random.world -------------------------------------------------------------------------------- /spcbot_navigation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_navigation/CMakeLists.txt -------------------------------------------------------------------------------- /spcbot_navigation/launch/gmapping.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_navigation/launch/gmapping.launch -------------------------------------------------------------------------------- /spcbot_navigation/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/spcbot_navigation/package.xml -------------------------------------------------------------------------------- /with_rviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Geekgineer/spcbot/HEAD/with_rviz.png --------------------------------------------------------------------------------