🤖ROS
ROS Interface
Using ROS on Raspberry Pi
sudo apt-get update && sudo apt-get upgrade
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker pi
# test installation
docker run hello-worldmkdir -p workspace/src
cd workspace/src
git clone https://github.com/PetoiCamp/ros_opencat
cd ros_opencat
git submodule init && git submodule update
cd ../../..docker run -v path/to/workspace:/workspace \
-it --rm --privileged --network host --name ros ros:noetic-robotUsing ROS for remote control
Examples
Last updated
Was this helpful?