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

Revision history [back]

In your launch file, the two conditionals for launching inside a namespace or not are the same. I think it should be:

<launch>
  <arg name="multiple" default="false"/>
  <group if="$(arg multiple)" ns="$(arg robot)">
    <node pkg="turtlebot_dashboard" type="turtlebot_dashboard" name="turtlebot_dashboard"/>
  </group>
  <group unless="$(arg multiple)">
    <node pkg="turtlebot_dashboard" type="turtlebot_dashboard" name="turtlebot_dashboard"/>
  </group>
</launch>