ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You need to remap topic name on at least one of the nodes, and give deffirent names to them. Easiest way is use launch file:
<launch> <node name="hokuyo0" pkg="hokuyo_node" type="hokuyo_node"> <remap from="scan" to="scan0"/> </node> <node name="hokuyo1" pkg="hokuyo_node" type="hokuyo_node"> <remap from="scan" to="scan1"/> </node> </launch>
2 | indetation correction |
You need to remap topic name on at least one of the nodes, and give deffirent names to them. Easiest way is use launch file:
<launch>
<node name="hokuyo0" pkg="hokuyo_node" type="hokuyo_node">