Edit on Github
Actions¶
Table of Contents
About¶
Actions are a form of asynchronous communication in ROS. Action clients send goal requests to action servers. Action servers send goal feedback and results to action clients. For more detailed information about ROS actions, please refer to the design article.
This document contains a list of tutorials related to actions. For reference, after completing all of the tutorials you should expect to have a ROS package that looks like the package action_tutorials.
Prequisites¶
Setup a workspace and create a package named
action_tutorials:Linux / OSX:
mkdir -p action_ws/src cd action_ws/src ros2 pkg create action_tutorialsWindows:
mkdir -p action_ws\src cd action_ws\src ros2 pkg create action_tutorials