ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

you have to write your own lauch script.

and you have to start every node in a seperate namespace

examl for rosserial lauchfile is

<launch>
<node pkg="rosserial_server" type="serial_node" name="rosserial_server">
<rosparam>
  port: /dev/arduino
  require:
    publishers: [ status ]
    subscribers: [ cmd, lights ]
</rosparam>
</node>
<node pkg="rosserial_python" type="message_info_service.py"
    name="rosserial_message_info" />
</launch>

and namespace handling you can read hear, with multible robots

https://answers.ros.org/question/229185/roslaunch-namespace-substitution-within-group-tags/

see the aceepted answer