Launch Files¶
In this exercise, we will explore starting groups of nodes at once with launch files.
Motivation¶
The ROS architecture encourages engineers to use ‘’nodes’’ as a fundamental unit of organization in their systems, and applications can quickly grow to require many nodes to operate. Opening a new terminal and running each node individually quickly becomes unfeasible. It’d be nice to have a tool to bring up groups of nodes at once. ROS ‘’launch’’ files are one such tool.
Reference Example¶
Further Information and Resources¶
Scan-N-Plan Application: Problem Statement¶
In this exercise, you will:
Create a new package,
myworkcell_support.Create a directory in this package called
launch.Create a file inside this directory called
workcell.launch.pythat:Launches
fake_ar_publisherLaunches
vision_node
You may also choose to launch myworkcell_core node with the others or keep it separate. We often configure systems with two main launch files. In this example, fake_ar_publisher and vision_node are “environment nodes”, while myworkcell_node is an “application” node.
“Environment” Launch File - driver/planning nodes, config data, etc.
“Application” Launch File - executes a sequence of actions for a particular application.
Scan-N-Plan Application: Guidance¶
In your workspace, create the new package
myworkcell_supportwith a dependency onmyworkcell_core. Rebuild and source the workspace so that ROS can find the new package:cd ~/ros2_ws/src ros2 pkg create myworkcell_support --dependencies myworkcell_core
Then run
colcon buildin your build terminal and source your running terminal.source ~/ros2_ws/install/setup.bash
Create a directory for launch files (inside the new
myworkcell_supportpackage):cd src/myworkcell_support mkdir launch
Create a new file,
workcell.launch.py(inside thelaunchdirectory) with the following skeleton:import launch import launch_ros def generate_launch_description(): return launch.LaunchDescription([ # launch actions here... ])
In the space marked by the comment about ‘launch actions’, insert lines to bring up the nodes outlined in the problem statement. See the reference documentation for more information:
launch_ros.actions.Node( name='fake_ar_publisher_node', package='fake_ar_publisher', executable='fake_ar_publisher_node', ), launch_ros.actions.Node( name='vision_node', package='myworkcell_core', executable='vision_node', ),
There are other options you can set for these
Nodeactions, butname,package, andexecutableare the most common ones.
Try to run the launch file:
ros2 launch myworkcell_support workcell.launch.py
You should see an error that the launch file was not found. This is because it only exists in the
src/directory, and theros2tool will only work with files in theinstall/directory. Therefore, the launch file must be installed.Add an installation rule to
CMakeLists.txtin yourmyworkcell_supportpackage, after thefind_packagesection, and before theBUILD_TESTINGsection:install(DIRECTORY launch DESTINATION share/${PROJECT_NAME}/)
Now build the workspace to install the launch file and try to run it again:
ros2 launch myworkcell_support workcell.launch.py
Note: Both nodes were automatically started. Press Ctrl+C to close all nodes started by the launch file.
The expected behavior is that you should see none of the usual messages printed to the console window. Launch files will suppress console output below the ERROR severity level by default. To restore normal text output, add the
output='screen'argument to each of the nodes in your launch file (see below). Current versions of ROS do not seem to follow this behavior, though, and output INFO/WARN messages to screen regardless ofoutputsetting.launch_ros.actions.Node( name='fake_ar_publisher_node', package='fake_ar_publisher', executable='fake_ar_publisher_node', output='screen', ), launch_ros.actions.Node( name='vision_node', package='myworkcell_core', executable='vision_node', output='screen', ),
Even without the
output='screen'argument, the logging statements are still broadcast to any ROS nodes that listen to the global/rosouttopic and captured in a log file.Important: Remember that
ros2works on the launch file in theinstall/directory and so you won’t see the new behavior without runningcolcon buildagain to reinstall the file. To avoid having to do this for every change during development, you can runcolcon buildwith a--symlink-installoption which will install a link to the file in thesrc/directory so any changes will be seen immediately.