ROS2_pubsub/README.md

49 lines
2.8 KiB
Markdown
Raw Normal View History

2021-01-13 15:28:01 +01:00
# pubsub - Publisher & Subscriber Package
2021-01-15 11:22:32 +01:00
Publisher & Subscriber template package and source code.
2021-01-13 15:28:01 +01:00
Created for ROS Workshop 2020
Roverentwicklung für Explorationsaufgaben
Institute for Space Systems
University of Stuttgart.
Created by Patrick Winterhalder,
[IRS](https://www.irs.uni-stuttgart.de/en/), University of Stuttgart.
## Workshop Prerequisites
* Install [Ubuntu 20.04]()
* Install Visual Studio Code using [Ubuntu Software](https://wiki.ubuntuusers.de/Ubuntu_Software/)
* Install [Git](https://linuxconfig.org/how-to-install-git-on-ubuntu-20-04-lts-focal-fossa-linux) (no account required yet)
* Install [ROS2](https://index.ros.org/doc/ros2/Installation/Foxy/Linux-Install-Debians/) ("desktop" on PC, "base" on Raspberry Pi). Do install _argcomplete_, no need for _ROS 1 bridge_ or _RMW implementations_.
* Install and update _rosdep_:
* `sudo apt install python3-rosdep2 -y`
* `rosdep update`
* (`sudo rosdep init`)
* Work through ["Beginner: CLI Tools"](https://index.ros.org/doc/ros2/Tutorials/) tutorial
* [Configuring your ROS 2 environment](https://index.ros.org/doc/ros2/Tutorials/Configuring-ROS2-Environment/):
* Source setup files (underlay, overlay)
* Configure .bashrc (shell startup script)
* Add colcon_cd to .bashrc (shell startup script)
* Check environment variables (check for correct installation)
* Configure ROS_DOMAIN_ID (DDS Network Number)
* Cover turtlesim, rqt, topics, services, actions
## Install Instructions
* Move to colcon workspace: `cd <workspace_path>`
* Clone repository: `git clone git://github.com/patrickw135/pubsub.git .` (include the . at the end)
* Build workspace: `colcon build`
__Note:__ Only the files inside _src/_ are of importance.
2021-01-13 15:36:05 +01:00
* Remember to run `source ~/<workspace_path>/install/local_setup.sh` after every build. Best would be to [add this command to _.bashrc_](https://egit.irs.uni-stuttgart.de/RoverLehre/ROS2_pubsub/src/branch/master/bashrc_addons.bash) which is run everytime you start a new console.
2021-01-13 15:28:01 +01:00
## During Workshop
* Create workspace:
* Install [_colcon_](https://index.ros.org/doc/ros2/Tutorials/Colcon-Tutorial/#colcon): `sudo apt install python3-colcon-common-extensions -y`
* Create packag inside _~/{workspace_name}/src_:
* `ros2 pkg create --build-type [ament_cmake, ament-python] <package_name>`
* Go back up one layer: `cd ..`
* Build workspace: `colcon build --symlink-install`
2021-01-13 15:36:05 +01:00
* Add [this](https://egit.irs.uni-stuttgart.de/RoverLehre/ROS2_pubsub/src/branch/master/bashrc_addons.bash) to end of .bashrc (`sudo nano .bashrc`), find all instances of "`~/ws_overlay_foxy`" and replace it with your local path to your colcon workspace
* Follow [these instructions](https://egit.irs.uni-stuttgart.de/RoverLehre/ROS2_pubsub/src/branch/master/instructions_custom_topics.md) to create a custom message to define the interface between nodes