This repo provides a clean integration for the ASBR package, including URDF descriptions and visualizations for various robotic components. The integration includes support for Universal Robots, Robotiq grippers, and RealSense cameras. Please be aware this integration is still currently under development.
ASBR_integration-/
├── asbr_package/
│ └── asbr_test_ws/
│ ├── src/
│ │ ├── asbr_description/
│ │ │ ├── config/
│ │ │ ├── launch/
│ │ │ ├── rviz/
│ │ │ └── urdf/
│ │ │ ├── CMakeLists.txt
│ │ │ └── package.xml
│ │ ├── realsense2_description/
│ │ │ ├── .github/
│ │ │ ├── launch/
│ │ │ ├── meshes/
│ │ │ ├── rviz/
│ │ │ └── urdf/
│ │ │ ├── CMakeLists.txt
│ │ │ └── package.xml
│ │ ├── robotiq_description/
│ │ │ ├── robotiq/
│ │ │ ├── robotiq_2f_85_gripper_visualization/
│ │ │ │ ├── launch/
│ │ │ │ ├── meshes/
│ │ │ │ └── urdf/
│ │ │ │ ├── robotiq_adapter.xacro
│ │ │ │ ├── robotiq_arg2f_85_model_macro.xacro
│ │ │ │ ├── robotiq_arg2f_85_model.xacro
│ │ │ │ ├── robotiq_arg2f_transmission.xacro
│ │ │ │ └── robotiq_arg2f.xacro
│ │ │ ├── CMakeLists.txt
│ │ │ └── package.xml
│ ├── build/
│ ├── install/
│ └── log/
├── .gitignore
├── CONTRIBUTING.md
├── Intel Copyright
├── LICENSE
├── NOTICE.md
├── README.md
└── security.md
To get started, clone the repository using the following command:
git clone https://github.com/Seyi-roboticist/ASBR_integration-.git
Navigate to the asbr_test_ws
workspace and build the selected packages using colcon
:
cd asbr_package/asbr_test_ws
colcon build --packages-select asbr_description ur_description robotiq_2f_85_gripper_visualization realsense2_description
- asbr_description: Contains URDF and description files specific to the ASBR course.
- ur_description: Includes URDF and description files for Universal Robots.
- robotiq_2f_85_gripper_visualization: Provides URDF and visualization files for the Robotiq 2F-85 gripper.
- realsense2_description: Contains URDF and description files for Intel RealSense cameras.
To visualize the integrated demo in RViz, use the xml launch file I created by running the below command:
ros2 launch asbr_description display_asbr_ur5e.launch.xml
This project is licensed under the MIT License - see the LICENSE file for details.
For questions or issues, please open an issue on GitHub or contact Seyi R. Afolayan directly.
This README file provides the necessary steps to set up and run the ASBR demo integration. For further details or updates, refer to the repository: ASBR Integration. Further work will include gazebo, ROS2 control and much more.