mirror of
https://github.com/micro-ROS/micro-ROS-Agent.git
synced 2026-09-06 09:55:15 +02:00
Co-authored-by: mecarill <mihkailkennerley@gmail.com>
(cherry picked from commit fe1b3ade97)
Co-authored-by: mecarill <62688286+mecarill@users.noreply.github.com>
13 lines
340 B
Python
13 lines
340 B
Python
from launch import LaunchDescription
|
|
from launch_ros.actions import Node
|
|
|
|
def generate_launch_description():
|
|
return LaunchDescription([
|
|
Node(
|
|
package='micro_ros_agent',
|
|
executable='micro_ros_agent',
|
|
name='micro_ros_agent',
|
|
arguments=["udp4", "-p", "8888", "-v6"]
|
|
)
|
|
])
|