ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
![]() | 1 | initial version |
In general, take a look at the XML spec for roslaunch files: http://ros.org/wiki/roslaunch/XML
For your specific case, you'll want <node> tags that specify a name, and parameter tags for the serial numbers. Something like:
<node pkg="pololu_smc_driver" type="smc_driver_node" name="r_controller>
<param name="smc_serial" value="3800-6F06-3055-3932-7560-0343"/>
</node>
Along with a similar <node> tag for your left motor controller.
![]() | 2 | No.2 Revision |
In general, take a look at the XML spec for roslaunch files: http://ros.org/wiki/roslaunch/XML
For your specific case, you'll want <node> tags that specify a name, and parameter tags for the serial numbers. Something like:
<node pkg="pololu_smc_driver" type="smc_driver_node" name="r_controller>
name="r_controller">
<param name="smc_serial" value="3800-6F06-3055-3932-7560-0343"/>
</node>
Along with a similar <node> tag for your left motor controller.
![]() | 3 | No.3 Revision |
In general, take a look at the XML spec for roslaunch files: http://ros.org/wiki/roslaunch/XML
For your specific case, you'll want <node> tags that specify a name, and parameter tags for the serial numbers. Something like:
<launch>
<node pkg="pololu_smc_driver" type="smc_driver_node" name="r_controller">
<param name="smc_serial" value="3800-6F06-3055-3932-7560-0343"/>
</node>
</launch>
Along with a similar <node> tag for your left motor controller.