- ๐ท Video streaming using OpenCV
- ๐ Reading and writing data via the MAVLink protocol with PYMAVLINK
- ๐ฎ Joystick interaction
- ๐ค PID controller for automatic depth control and yaw, pitch, roll orientation
- ๐ Controlling the Tritech Micron sonar and outputting data as a point cloud
In this guide, we'll walk you through the process of setting up your development environment to work with ROS 2 Humble and a specific project repository on Ubuntu Jammy Jellyfish (22.04). Follow these steps to get started:
To begin, you'll need to install Ubuntu Jammy Jellyfish (22.04) on your computer. You can find installation instructions on the Ubuntu website or choose a suitable installation method for your system.
Next, you'll need to install ROS 2 Humble. Follow the official ROS 2 installation guide for Ubuntu development setup available at ROS Humble to install ROS 2 on your system.
Now that you have Ubuntu Jammy Jellyfish and ROS 2 Humble installed, you can proceed to clone the project repository to your computer. Open a terminal and run the following command:
git clone https://github.com/Vincent1334/ROS-Humble-BlueRov2-Driver.git
This will download the project's source code to your local machine.
Navigate to your ROS workspace's root directory and install the ROS dependencies using ROS 2's package manager, 'rosdep' :
cd ~/ROS-Humble-BlueRov2-Driver
sudo rosdep init
rosdep update
rosdep install --from-paths src -y --ignore-src
Before you proceed further with the ROS 2 project, it's important to ensure that your BlueRov is configured correctly. Follow these steps to verify your BlueRov's configuration:
Make sure that your BlueRov is running "BlueOS" or an equivalent operating system that supports ROS 2 integration. BlueOS is a popular choice for ROVs and provides the necessary infrastructure to work with ROS 2.
ROS 2 relies on Mavlink communication to interact with your BlueRov. Ensure that your BlueRov is configured to establish Mavlink communication with your development environment. This typically involves configuring the communication settings on your ROV's companion computer or onboard computer.