Arduinobot is an open-source 3D printed robot arm powered by ROS 2. Its simple design and low cost make it an excellent learning tool, featured in the Robotics and ROS 2 - Learn by Doing! Manipulators course.
- 🚀
arduinobot_bringup
: Contains launch files that starts all the functionalities of the real or simulated robot. - 🎮
arduinobot_controller
: Contains the ROS 2 Control configuration and Hardware interface with the real robot. - 📎
arduinobot_cpp_examples
: Contains ROS 2 templates for developing with C++. - 📒
arduinobot_description
: Contains the URDF description of the robot and its Gazebo simulation. - 🔋
arduinobot_firmware
: Contains the Arduino code for actuating the motors of the real robot. - 🧠
arduinobot_moveit
: Contains the MoveIt 2 configuration and launch files. - 📧
arduinobot_msgs
: Contains the definition of new ROS 2 message interfaces. - 📎
arduinobot_py_examples
: Contains ROS 2 templates for developing with Python. - 🗣️
arduinobot_remote
: Contains the remote interface to move the robot using the Amazon Alexa voice assistant. - ⚒️
arduinobot_utils
: Contains some utilities and tools.
This robot and its simulation can be used with an Ubuntu 22.04 machine running ROS 2 Humble or and Ubuntu 24.04 machine running ROS 2 Jazzy.
- Install Ubuntu 24.04 or Ubuntu 22.04 on your PC or in a Virtual Machine.
- Install ROS 2 Jazzy if you are on Ubuntu 24.04. Otherwise, install ROS 2 Humble if you are on Ubuntu 22.04
- Install ROS 2 missing libraries. Some libraries that are used in this project are not in the standard ROS 2 package. Install them with:
- Install VS Code and Arduino IDE on your PC in order to build and load the Arduino code on the device
- Install Python and C++ addistional libraries
sudo apt-get update && sudo apt-get install -y \
libserial-dev \
python3-pip
pip install pyserial
pip install flask
pip install flask-ask-sdk
pip install ask-sdk
- Create a Workspace
mkdir -p arduinobot/src
- Clone this repo
cd arduinobot_ws/src
git clone https://github.com/AntoBrandi/arduinobot.git
- Install the dependencies
cd ..
rosdep install --from-paths src --ignore-src -i -y
- Build the workspace
colcon build
- Source the ROS Workspace (Use this command in a separate terminal from the one you used to build the workspace)
. install/setup.bash
- Launch all the functionalities for the simulated robot
ros2 launch arduinobot_bringup simulated_robot.launch.py
-
Connect the Arduino actuating your robot to your PC and load the robot_control.ino script using the Arduino IDE.
-
Launch all the functionalities for the real robot
ros2 launch arduinobot_bringup real_robot.launch.py
demo_pick.mp4
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. Please refer to CONTRIBUTING doc.
Antonio Brandi - LinkedIn - [email protected]
Other Projects: https://github.com/AntoBrandi