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