moveit2
The MoveIt Motion Planning Framework for ROS 2.
setup_assistant.launch.py
Go to the documentation of this file.
1 from launch import LaunchDescription
3  add_debuggable_node,
4  DeclareBooleanLaunchArg,
5 )
6 
7 
9  ld = LaunchDescription()
10 
11  ld.add_action(DeclareBooleanLaunchArg("debug", default_value=False))
13  ld,
14  package="moveit_setup_assistant",
15  executable="moveit_setup_assistant",
16  )
17 
18  return ld
def add_debuggable_node(ld, package, executable, condition_name="debug", commands_file=None, extra_debug_args=None, **kwargs)
Definition: launch_utils.py:29