Skip to content
Snippets Groups Projects
Commit 40baa0cf authored by Paul-Winpenny's avatar Paul-Winpenny
Browse files

Create robobin_launch.py

parent 58a6463e
No related branches found
No related tags found
No related merge requests found
# ~/GitLab/robobin/ros2/src/robobin/launch/robobin_launch.py
from launch import LaunchDescription
from launch_ros.actions import Node
def generate_launch_description():
return LaunchDescription([
Node(
package='robobin',
executable='api_node', # Name of your first node
name='api_node',
output='screen'
),
# Add additional nodes
# Example:
# Node(
# package='robobin',
# executable='connection_handler_node',
# name='connection_handler_node',
# output='screen'
# ),
])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment