KevsRobots Learning Platform
45% Percent Complete
By Kevin McAleer, 3 Minutes
Microsoft VSCode can connect to a remote computer, such as our Raspberry Pi, over SSH and then connect to running contains on that remote machine so that we can write, run and debug our ROS2 programs.
We will need to install some extensions first, then connect to our ROS2 container on the Raspberry Pi.
Lets install the two docker extensions on our main computer (not the Raspberry Pi), that we will use to write, run and debug code.
docker
in the search bar - This will show installable docker extensionsDocker
extension - This extension is published by Microsoftremote
in the search bar - This will show installable remote extensionsRemote - SSH
extension - This extension is published by MicrosoftRemote Explorer
extension - This extension is also published by MicrosoftWe can now connect to the Raspberry Pi 4 running our new docker container by using SSH from our main computer running VSCode.
CTRL + SHIFT + P
to open the command paletteconnect
in the command palette search and then select ConnectRemote-SSH Connect to Host...
- Then type [email protected]
where pi
is the username you selected earlier and the IP Address
is that of your Pi.To find the ip address of your Pi you can type
ip a
from the Raspberry Pi terminal; there will be a list of all the addresses the Pi is using.
Open Folder
- We can now open a folder; select ‘Cubie-1’You can browse the remote file system and open the files we downloaded earlier
We can now connect to the running docker container that we created in step 7. We can create code from the comfort of our main computer running vscode and run code remotely on our robot. This will make the development process much simpler.
To connect to the container:
CTLR + SHIFT + `
docker exec -it docker_ros2_1 bash
Where docker_ros2_1
is the name of the running container
To list all the running containers, type
docker ps
from the terminal
🎉 Congratulations, you’ve now setup ROS2 in a container on the Raspberry Pi and connected to it from another computer running VSCode.
You can use the arrows ← →
on your keyboard to navigate between lessons.