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