This template will get you set up using ROS2 with VSCode as your IDE.
See how I develop with vscode and ros2 for a more in-depth look on how to use this workspace.
a
ROS2-approved formatters are included in the IDE.
- c++ uncrustify; config from
ament_uncrustify
- python autopep8; vscode settings consistent with the style guide
There are many pre-defined tasks, see .vscode/tasks.json
for a complete listing. Feel free to adjust them to suit your needs.
Take a look at how I develop using tasks for an idea on how I use tasks in my development.
This template sets up debugging for python files and gdb for cpp programs. See .vscode/launch.json
for configuration details.
The template also comes with basic continuous integration set up. See .github/workflows/ros.yaml
.
To remove a linter just delete it's name from this line:
matrix:
linter: [cppcheck, cpplint, uncrustify, lint_cmake, xmllint, flake8, pep257]
You should already have Docker and VSCode with the remote containers plugin installed on your system.
Click on "use this template"
On the next dialog, name the repository you would like to start and decide if you want all of the branches, or just the latest LTS: Foxy.
Github will then create a new repository with the contents of this one in your account. It grabs the latest changes as "initial commit".
Now you can clone your repo as normal
Now that you've cloned your repo onto your computer, you can open it in VSCode (File->Open Folder).
When you open it for the first time, you should see a little popup that asks you if you would like to open it in a container. Say yes!
If you don't see the pop-up, click on the little green square in the bottom left corner, which should bring up the container dialog
In the dialog, select "Remote Containers: Reopen in container"
VSCode will build the dockerfile inside of .devcontainer
for you. If you open a terminal inside VSCode (Terminal->New Terminal), you should see that your username has been changed to ros
, and the bottom left green corner should say "Dev Container"
- Specify the repositories you want to include in your workspace in
src/ros2.repos
or deletesrc/ros2.repos
and develop directly within the workspace.- If you are using a
ros2.repos
file, import the contentsTerminal->Run Task..->import from workspace file
- If you are using a
- Install dependencies
Terminal->Run Task..->install dependencies
- Develop!
- Install dependencies
sudo apt update -y && sudo apt install gitk -y && sudo apt install ~nros-foxy-rqt* -y && sudo apt install gedit -y
-
Install dependencies of ROS packages
Terminal->Run Task..->install dependencies
-
Build ros project
Terminal->Run Task..->fast build
-
Run demo (Publisher/Subscriber) :
ros2 run simple_publisher publisher_main
ros2 run simple_subscriber subscriber_main
-
To build ROS2 project
$ colcon build && source install/local_setup.sh
-
Run a ROS2 node
$ ros2 run <package_name> <executable_name>
-
Run a ROS2 launcher (multiple nodes)
$ ros2 launch <package_name> <script_name>.launch.py
-
List running ROS2 nodes
$ ros2 node list
-
List visible topic names (a topic is visible if at least 1 node is publishing or subscribing to it)
$ ros2 topic list
-
Echo what's published on a topic
$ ros2 topic echo <topic_name>
-
Show ROS2 nodes graph
$ ros2 run rqt_graph rqt_graph
To show the git branch with colours in terminal Bash prompt :
$ gedit ~/.bashrc
Adding this to .bashrc:
parse_git_branch() { git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* (.*)/(\1)/' }