├── README.md ├── img ├── agilex_open_class.png └── 松灵ROS 2开讲啦.jpg ├── limo ├── README.md ├── image │ ├── limo_ackerman.png │ ├── limo_diff.png │ └── rviz.png ├── limo_bringup │ ├── CMakeLists.txt │ ├── config_files │ │ ├── demo_2d.rviz │ │ ├── ekf.yaml │ │ ├── limo_laser.lua │ │ ├── limo_lds_2d.lua │ │ ├── limon_navigation.rviz │ │ └── slam_box.yaml │ ├── launch │ │ ├── __pycache__ │ │ │ ├── cartographer.launch.cpython-310.pyc │ │ │ └── occupancy_grid.launch.cpython-310.pyc │ │ └── humble │ │ │ ├── __pycache__ │ │ │ └── limo_rtab_nav2.laun.cpython-310.pyc │ │ │ ├── bringup.launch.py │ │ │ ├── ekf_odom.launch.py │ │ │ ├── limo_cartographer.launch copy.py │ │ │ ├── limo_cartographer.launch.py │ │ │ ├── limo_nav2.launch.py │ │ │ ├── limo_nav2_explore.launch.py │ │ │ ├── limo_rtab_nav2.launch.py │ │ │ ├── limo_rtab_rgbd.launch.py │ │ │ ├── limo_rtab_scan.launch.py │ │ │ ├── limo_slam_box.launch.py │ │ │ ├── limo_start.launch.py │ │ │ ├── localization_launch.py │ │ │ ├── navigation_launch.py │ │ │ └── rgbdslam_datasets.launch.py │ ├── maps │ │ ├── limo.pgm │ │ ├── limo.yaml │ │ ├── map.pgm │ │ ├── map.yaml │ │ ├── map01.pgm │ │ ├── map01.yaml │ │ ├── map02.pgm │ │ ├── map02.yaml │ │ ├── map03.pgm │ │ ├── map03.yaml │ │ ├── map04.pgm │ │ ├── map04.yaml │ │ ├── map212.pgm │ │ ├── map212.yaml │ │ ├── map222 (copy).pgm │ │ ├── map222.pgm │ │ └── map222.yaml │ ├── package.xml │ ├── param │ │ ├── amcl_params.yaml │ │ ├── costmap_common.yaml │ │ ├── costmap_global_laser.yaml │ │ ├── costmap_global_static.yaml │ │ ├── costmap_local.yaml │ │ ├── nav2.yaml │ │ ├── nav2_ackermann.yaml │ │ ├── nav2_ackermann_foxy.yaml │ │ ├── nav2_ackermann_rtab.yaml │ │ ├── nav2_explore.yaml │ │ ├── planner.yaml │ │ └── ydlidar.yaml │ ├── readme.md │ ├── rviz │ │ ├── cartographer.rviz │ │ ├── nav2.rviz │ │ ├── nav2_copy.rviz │ │ └── nav2_rtab.rviz │ ├── scripts │ │ ├── mpu6050_test │ │ │ ├── blinkatest.py │ │ │ ├── simple_test.py │ │ │ ├── use_smbus.py │ │ │ └── use_smbus_2.py │ │ └── start_build_map_2d_ros2.sh │ └── setup.py ├── limo_description │ ├── CMakeLists.txt │ ├── img │ │ └── limo.jpg │ ├── launch │ │ ├── display_limo_ackerman.launch.py │ │ └── display_limo_diff.launch.py │ ├── meshes │ │ ├── limo_base.dae │ │ ├── limo_base.stl │ │ ├── limo_wheel.dae │ │ └── limo_wheel.stl │ ├── package.xml │ ├── rviz │ │ └── model_display.rviz │ └── urdf │ │ ├── limo_ackerman.gazebo │ │ ├── limo_ackerman.xacro │ │ ├── limo_ackerman_gazebo.gazebo │ │ ├── limo_four_diff.gazebo │ │ ├── limo_four_diff.xacro │ │ ├── limo_gazebo.gazebo │ │ ├── limo_steering_hinge.xacro │ │ └── limo_xacro.xacro ├── limo_gazebo_sim │ ├── CMakeLists.txt │ ├── config │ │ ├── limo_ackerman_control.yaml │ │ └── limo_four_diff_control.yaml │ ├── launch │ │ ├── limo_ackerman.launch.py │ │ ├── limo_ackerman_empty_world.launch.py │ │ ├── limo_ackerman_spawn.launch.py │ │ ├── limo_diff.launch.py │ │ ├── limo_diff_empty_world.launch.py │ │ └── limo_diff_spawn.launch.py │ ├── package.xml │ └── worlds │ │ ├── clearpath_playpen.world │ │ ├── empty.world │ │ ├── willowgarage.world │ │ ├── world_v1.world │ │ └── world_v1 │ │ ├── model.config │ │ └── model.sdf ├── limo_learnning │ ├── CMakeLists.txt │ ├── package.xml │ └── src │ │ ├── action.cpp │ │ ├── explore.cpp │ │ ├── follow_path.cpp │ │ ├── limo_action_client.cpp │ │ ├── limo_action_server.cpp │ │ ├── limo_client.cpp │ │ ├── limo_scan.cpp │ │ ├── limo_scan_nav.cpp │ │ ├── limo_server.cpp │ │ ├── limo_topic_cmd.cpp │ │ ├── listen_tf.cpp │ │ ├── multi_goal_nav.cpp │ │ ├── multi_goal_nav_back.cpp │ │ └── record_path.cpp ├── limo_learnning_py │ ├── limo_learnning_py │ │ ├── __init__.py │ │ ├── limo_action_client.py │ │ ├── limo_action_server.py │ │ ├── limo_client.py │ │ ├── limo_scan.py │ │ ├── limo_server.py │ │ ├── limo_topic_cmd.py │ │ └── multi_goal_nav.py │ ├── package.xml │ ├── resource │ │ └── limo_learnning_py │ ├── setup.cfg │ ├── setup.py │ └── test │ │ ├── test_copyright.py │ │ ├── test_flake8.py │ │ └── test_pep257.py └── limo_msgs │ ├── CMakeLists.txt │ ├── action │ └── LimoAction.action │ ├── msg │ └── LimoStatus.msg │ ├── package.xml │ └── srv │ └── LimoSrv.srv └── piper ├── README.md ├── image ├── piper.png ├── piper_gazebo.png ├── piper_gazebo_moveit.png └── piper_moveit.png ├── learnning_piper ├── CMakeLists.txt ├── package.xml └── src │ ├── move_multi_target.cpp │ ├── move_target.cpp │ └── moveit_cpp_tutorial.cpp ├── piper_description ├── CMakeLists.txt ├── config │ ├── joint_name_piper_description.yaml │ ├── joint_names_agx_arm_description.yaml │ └── piper_gazebo_control.yaml ├── launch │ ├── display_piper.launch.py │ ├── piper_empty_world.launch.py │ ├── piper_gazebo.launch.py │ └── piper_spawn.launch.py ├── meshes │ ├── base_link.STL │ ├── link1.STL │ ├── link2.STL │ ├── link3.STL │ ├── link4.STL │ ├── link5.STL │ ├── link6.STL │ ├── link7.STL │ └── link8.STL ├── package.xml ├── rviz │ └── piper_ctrl.rviz ├── urdf │ ├── piper_description.csv │ ├── piper_description.urdf │ ├── piper_description.xacro │ └── piper_description_gazebo.xacro └── worlds │ └── empty.world ├── piper_moveit_config_v4 ├── .setup_assistant ├── CMakeLists.txt ├── config │ ├── initial_positions.yaml │ ├── joint_limits.yaml │ ├── kinematics.yaml │ ├── moveit.rviz │ ├── moveit_controllers.yaml │ ├── pilz_cartesian_limits.yaml │ ├── piper.ros2_control.xacro │ ├── piper.srdf │ ├── piper.urdf.xacro │ └── ros2_controllers.yaml ├── launch │ ├── demo.launch.py │ ├── move_group.launch.py │ ├── moveit_rviz.launch.py │ ├── rsp.launch.py │ ├── setup_assistant.launch.py │ ├── spawn_controllers.launch.py │ ├── static_virtual_joint_tfs.launch.py │ └── warehouse_db.launch.py └── package.xml └── piper_moveit_config_v5 ├── .setup_assistant ├── CMakeLists.txt ├── config ├── initial_positions.yaml ├── joint_limits.yaml ├── kinematics.yaml ├── moveit.rviz ├── moveit_controllers.yaml ├── pilz_cartesian_limits.yaml ├── piper.ros2_control.xacro ├── piper.srdf ├── piper.urdf.xacro └── ros2_controllers.yaml ├── launch ├── demo.launch.py ├── move_group.launch.py ├── moveit_rviz.launch.py ├── rsp.launch.py ├── setup_assistant.launch.py ├── spawn_controllers.launch.py ├── static_virtual_joint_tfs.launch.py └── warehouse_db.launch.py └── package.xml /README.md: -------------------------------------------------------------------------------- 1 | # 松灵 ROS2 开讲啦! 2 | ![img](img/agilex_open_class.png) 3 | -------------------------------------------------------------------------------- /img/agilex_open_class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/img/agilex_open_class.png -------------------------------------------------------------------------------- /img/松灵ROS 2开讲啦.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/img/松灵ROS 2开讲啦.jpg -------------------------------------------------------------------------------- /limo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/README.md -------------------------------------------------------------------------------- /limo/image/limo_ackerman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/image/limo_ackerman.png -------------------------------------------------------------------------------- /limo/image/limo_diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/image/limo_diff.png -------------------------------------------------------------------------------- /limo/image/rviz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/image/rviz.png -------------------------------------------------------------------------------- /limo/limo_bringup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/CMakeLists.txt -------------------------------------------------------------------------------- /limo/limo_bringup/config_files/demo_2d.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/config_files/demo_2d.rviz -------------------------------------------------------------------------------- /limo/limo_bringup/config_files/ekf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/config_files/ekf.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/config_files/limo_laser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/config_files/limo_laser.lua -------------------------------------------------------------------------------- /limo/limo_bringup/config_files/limo_lds_2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/config_files/limo_lds_2d.lua -------------------------------------------------------------------------------- /limo/limo_bringup/config_files/limon_navigation.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/config_files/limon_navigation.rviz -------------------------------------------------------------------------------- /limo/limo_bringup/config_files/slam_box.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/config_files/slam_box.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/launch/__pycache__/cartographer.launch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/__pycache__/cartographer.launch.cpython-310.pyc -------------------------------------------------------------------------------- /limo/limo_bringup/launch/__pycache__/occupancy_grid.launch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/__pycache__/occupancy_grid.launch.cpython-310.pyc -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/__pycache__/limo_rtab_nav2.laun.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/__pycache__/limo_rtab_nav2.laun.cpython-310.pyc -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/bringup.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/bringup.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/ekf_odom.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/ekf_odom.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_cartographer.launch copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_cartographer.launch copy.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_cartographer.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_cartographer.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_nav2.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_nav2.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_nav2_explore.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_nav2_explore.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_rtab_nav2.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_rtab_nav2.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_rtab_rgbd.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_rtab_rgbd.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_rtab_scan.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_rtab_scan.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_slam_box.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_slam_box.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/limo_start.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/limo_start.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/localization_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/localization_launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/navigation_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/navigation_launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/launch/humble/rgbdslam_datasets.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/launch/humble/rgbdslam_datasets.launch.py -------------------------------------------------------------------------------- /limo/limo_bringup/maps/limo.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/limo.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/limo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/limo.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map01.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map01.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map01.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map02.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map02.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map02.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map03.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map03.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map03.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map04.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map04.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map04.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map212.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map212.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map212.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map212.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map222 (copy).pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map222 (copy).pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map222.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map222.pgm -------------------------------------------------------------------------------- /limo/limo_bringup/maps/map222.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/maps/map222.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/package.xml -------------------------------------------------------------------------------- /limo/limo_bringup/param/amcl_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/amcl_params.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/costmap_common.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/costmap_common.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/costmap_global_laser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/costmap_global_laser.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/costmap_global_static.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/costmap_global_static.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/costmap_local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/costmap_local.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/nav2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/nav2.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/nav2_ackermann.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/nav2_ackermann.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/nav2_ackermann_foxy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/nav2_ackermann_foxy.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/nav2_ackermann_rtab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/nav2_ackermann_rtab.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/nav2_explore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/nav2_explore.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/planner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/planner.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/param/ydlidar.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/param/ydlidar.yaml -------------------------------------------------------------------------------- /limo/limo_bringup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/readme.md -------------------------------------------------------------------------------- /limo/limo_bringup/rviz/cartographer.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/rviz/cartographer.rviz -------------------------------------------------------------------------------- /limo/limo_bringup/rviz/nav2.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/rviz/nav2.rviz -------------------------------------------------------------------------------- /limo/limo_bringup/rviz/nav2_copy.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/rviz/nav2_copy.rviz -------------------------------------------------------------------------------- /limo/limo_bringup/rviz/nav2_rtab.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/rviz/nav2_rtab.rviz -------------------------------------------------------------------------------- /limo/limo_bringup/scripts/mpu6050_test/blinkatest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/scripts/mpu6050_test/blinkatest.py -------------------------------------------------------------------------------- /limo/limo_bringup/scripts/mpu6050_test/simple_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/scripts/mpu6050_test/simple_test.py -------------------------------------------------------------------------------- /limo/limo_bringup/scripts/mpu6050_test/use_smbus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/scripts/mpu6050_test/use_smbus.py -------------------------------------------------------------------------------- /limo/limo_bringup/scripts/mpu6050_test/use_smbus_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/scripts/mpu6050_test/use_smbus_2.py -------------------------------------------------------------------------------- /limo/limo_bringup/scripts/start_build_map_2d_ros2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/scripts/start_build_map_2d_ros2.sh -------------------------------------------------------------------------------- /limo/limo_bringup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_bringup/setup.py -------------------------------------------------------------------------------- /limo/limo_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/CMakeLists.txt -------------------------------------------------------------------------------- /limo/limo_description/img/limo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/img/limo.jpg -------------------------------------------------------------------------------- /limo/limo_description/launch/display_limo_ackerman.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/launch/display_limo_ackerman.launch.py -------------------------------------------------------------------------------- /limo/limo_description/launch/display_limo_diff.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/launch/display_limo_diff.launch.py -------------------------------------------------------------------------------- /limo/limo_description/meshes/limo_base.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/meshes/limo_base.dae -------------------------------------------------------------------------------- /limo/limo_description/meshes/limo_base.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/meshes/limo_base.stl -------------------------------------------------------------------------------- /limo/limo_description/meshes/limo_wheel.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/meshes/limo_wheel.dae -------------------------------------------------------------------------------- /limo/limo_description/meshes/limo_wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/meshes/limo_wheel.stl -------------------------------------------------------------------------------- /limo/limo_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/package.xml -------------------------------------------------------------------------------- /limo/limo_description/rviz/model_display.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/rviz/model_display.rviz -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_ackerman.gazebo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_ackerman.gazebo -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_ackerman.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_ackerman.xacro -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_ackerman_gazebo.gazebo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_ackerman_gazebo.gazebo -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_four_diff.gazebo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_four_diff.gazebo -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_four_diff.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_four_diff.xacro -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_gazebo.gazebo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_gazebo.gazebo -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_steering_hinge.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_steering_hinge.xacro -------------------------------------------------------------------------------- /limo/limo_description/urdf/limo_xacro.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_description/urdf/limo_xacro.xacro -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/CMakeLists.txt -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/config/limo_ackerman_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/config/limo_ackerman_control.yaml -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/config/limo_four_diff_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/config/limo_four_diff_control.yaml -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/launch/limo_ackerman.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/launch/limo_ackerman.launch.py -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/launch/limo_ackerman_empty_world.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/launch/limo_ackerman_empty_world.launch.py -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/launch/limo_ackerman_spawn.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/launch/limo_ackerman_spawn.launch.py -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/launch/limo_diff.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/launch/limo_diff.launch.py -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/launch/limo_diff_empty_world.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/launch/limo_diff_empty_world.launch.py -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/launch/limo_diff_spawn.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/launch/limo_diff_spawn.launch.py -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/package.xml -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/worlds/clearpath_playpen.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/worlds/clearpath_playpen.world -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/worlds/empty.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/worlds/empty.world -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/worlds/willowgarage.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/worlds/willowgarage.world -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/worlds/world_v1.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/worlds/world_v1.world -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/worlds/world_v1/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/worlds/world_v1/model.config -------------------------------------------------------------------------------- /limo/limo_gazebo_sim/worlds/world_v1/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_gazebo_sim/worlds/world_v1/model.sdf -------------------------------------------------------------------------------- /limo/limo_learnning/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/CMakeLists.txt -------------------------------------------------------------------------------- /limo/limo_learnning/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/package.xml -------------------------------------------------------------------------------- /limo/limo_learnning/src/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/action.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/explore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/explore.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/follow_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/follow_path.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_action_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_action_client.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_action_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_action_server.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_client.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_scan.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_scan_nav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_scan_nav.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_server.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/limo_topic_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/limo_topic_cmd.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/listen_tf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/listen_tf.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/multi_goal_nav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/multi_goal_nav.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/multi_goal_nav_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/multi_goal_nav_back.cpp -------------------------------------------------------------------------------- /limo/limo_learnning/src/record_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning/src/record_path.cpp -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/limo_action_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/limo_action_client.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/limo_action_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/limo_action_server.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/limo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/limo_client.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/limo_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/limo_scan.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/limo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/limo_server.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/limo_topic_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/limo_topic_cmd.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/limo_learnning_py/multi_goal_nav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/limo_learnning_py/multi_goal_nav.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/package.xml -------------------------------------------------------------------------------- /limo/limo_learnning_py/resource/limo_learnning_py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /limo/limo_learnning_py/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/setup.cfg -------------------------------------------------------------------------------- /limo/limo_learnning_py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/setup.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/test/test_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/test/test_copyright.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/test/test_flake8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/test/test_flake8.py -------------------------------------------------------------------------------- /limo/limo_learnning_py/test/test_pep257.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_learnning_py/test/test_pep257.py -------------------------------------------------------------------------------- /limo/limo_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /limo/limo_msgs/action/LimoAction.action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_msgs/action/LimoAction.action -------------------------------------------------------------------------------- /limo/limo_msgs/msg/LimoStatus.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_msgs/msg/LimoStatus.msg -------------------------------------------------------------------------------- /limo/limo_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_msgs/package.xml -------------------------------------------------------------------------------- /limo/limo_msgs/srv/LimoSrv.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/limo/limo_msgs/srv/LimoSrv.srv -------------------------------------------------------------------------------- /piper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/README.md -------------------------------------------------------------------------------- /piper/image/piper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/image/piper.png -------------------------------------------------------------------------------- /piper/image/piper_gazebo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/image/piper_gazebo.png -------------------------------------------------------------------------------- /piper/image/piper_gazebo_moveit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/image/piper_gazebo_moveit.png -------------------------------------------------------------------------------- /piper/image/piper_moveit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/image/piper_moveit.png -------------------------------------------------------------------------------- /piper/learnning_piper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/learnning_piper/CMakeLists.txt -------------------------------------------------------------------------------- /piper/learnning_piper/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/learnning_piper/package.xml -------------------------------------------------------------------------------- /piper/learnning_piper/src/move_multi_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/learnning_piper/src/move_multi_target.cpp -------------------------------------------------------------------------------- /piper/learnning_piper/src/move_target.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/learnning_piper/src/move_target.cpp -------------------------------------------------------------------------------- /piper/learnning_piper/src/moveit_cpp_tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/learnning_piper/src/moveit_cpp_tutorial.cpp -------------------------------------------------------------------------------- /piper/piper_description/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/CMakeLists.txt -------------------------------------------------------------------------------- /piper/piper_description/config/joint_name_piper_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/config/joint_name_piper_description.yaml -------------------------------------------------------------------------------- /piper/piper_description/config/joint_names_agx_arm_description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/config/joint_names_agx_arm_description.yaml -------------------------------------------------------------------------------- /piper/piper_description/config/piper_gazebo_control.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/config/piper_gazebo_control.yaml -------------------------------------------------------------------------------- /piper/piper_description/launch/display_piper.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/launch/display_piper.launch.py -------------------------------------------------------------------------------- /piper/piper_description/launch/piper_empty_world.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/launch/piper_empty_world.launch.py -------------------------------------------------------------------------------- /piper/piper_description/launch/piper_gazebo.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/launch/piper_gazebo.launch.py -------------------------------------------------------------------------------- /piper/piper_description/launch/piper_spawn.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/launch/piper_spawn.launch.py -------------------------------------------------------------------------------- /piper/piper_description/meshes/base_link.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/base_link.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link1.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link1.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link2.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link2.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link3.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link3.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link4.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link4.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link5.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link5.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link6.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link6.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link7.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link7.STL -------------------------------------------------------------------------------- /piper/piper_description/meshes/link8.STL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/meshes/link8.STL -------------------------------------------------------------------------------- /piper/piper_description/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/package.xml -------------------------------------------------------------------------------- /piper/piper_description/rviz/piper_ctrl.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/rviz/piper_ctrl.rviz -------------------------------------------------------------------------------- /piper/piper_description/urdf/piper_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/urdf/piper_description.csv -------------------------------------------------------------------------------- /piper/piper_description/urdf/piper_description.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/urdf/piper_description.urdf -------------------------------------------------------------------------------- /piper/piper_description/urdf/piper_description.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/urdf/piper_description.xacro -------------------------------------------------------------------------------- /piper/piper_description/urdf/piper_description_gazebo.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/urdf/piper_description_gazebo.xacro -------------------------------------------------------------------------------- /piper/piper_description/worlds/empty.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_description/worlds/empty.world -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/.setup_assistant -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/CMakeLists.txt -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/initial_positions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/initial_positions.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/joint_limits.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/kinematics.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/moveit.rviz -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/moveit_controllers.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/pilz_cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/pilz_cartesian_limits.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/piper.ros2_control.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/piper.ros2_control.xacro -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/piper.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/piper.srdf -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/piper.urdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/piper.urdf.xacro -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/config/ros2_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/config/ros2_controllers.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/demo.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/demo.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/move_group.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/move_group.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/moveit_rviz.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/moveit_rviz.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/rsp.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/rsp.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/setup_assistant.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/setup_assistant.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/spawn_controllers.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/spawn_controllers.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/static_virtual_joint_tfs.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/static_virtual_joint_tfs.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/launch/warehouse_db.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/launch/warehouse_db.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v4/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v4/package.xml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/.setup_assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/.setup_assistant -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/CMakeLists.txt -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/initial_positions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/initial_positions.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/joint_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/joint_limits.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/kinematics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/kinematics.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/moveit.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/moveit.rviz -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/moveit_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/moveit_controllers.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/pilz_cartesian_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/pilz_cartesian_limits.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/piper.ros2_control.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/piper.ros2_control.xacro -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/piper.srdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/piper.srdf -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/piper.urdf.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/piper.urdf.xacro -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/config/ros2_controllers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/config/ros2_controllers.yaml -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/demo.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/demo.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/move_group.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/move_group.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/moveit_rviz.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/moveit_rviz.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/rsp.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/rsp.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/setup_assistant.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/setup_assistant.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/spawn_controllers.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/spawn_controllers.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/static_virtual_joint_tfs.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/static_virtual_joint_tfs.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/launch/warehouse_db.launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/launch/warehouse_db.launch.py -------------------------------------------------------------------------------- /piper/piper_moveit_config_v5/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agilexrobotics/agilex_open_class/HEAD/piper/piper_moveit_config_v5/package.xml --------------------------------------------------------------------------------