mirror of
https://github.com/elephantrobotics/mycobot_ros.git
synced 2026-07-05 19:47:04 +00:00
11 lines
470 B
XML
Executable file
11 lines
470 B
XML
Executable file
<launch>
|
||
<!-- Select connecting device and serial port ,选择连接设备及串口-->
|
||
<arg name="port" default="/dev/ttyAMA1" />
|
||
<arg name="baud" default="115200" />
|
||
|
||
<!-- Open communication service,开启通讯服务 -->
|
||
<node name="mercury_services" pkg="mercury_a1_communication" type="mercury_topics.py" output="screen">
|
||
<param name="port" type="string" value="$(arg port)" />
|
||
<param name="baud" type="int" value="$(arg baud)" />
|
||
</node>
|
||
</launch>
|