ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You can use something like this,
<node pkg="my_pkg" name="my_node type="my_node">
<rosparam>
key: value
foo: bar
</rosparam>
</node>
2 | No.2 Revision |
You can use something like this,
<node pkg="my_pkg" name="my_node name="my_node" type="my_node">
<rosparam>
key: value
foo: bar
</rosparam>
</node>
3 | No.3 Revision |
You can use something like this,
<node pkg="my_pkg" name="my_node" type="my_node">
<rosparam>
key: value
foo: bar
</rosparam>
</node>
EDIT:
You can also make a yaml file and load it in your launch file like
<rosparam file="$(find my_pkg)/config/my_params.yaml" />
4 | No.4 Revision |
You can use something like this,
<node pkg="my_pkg" name="my_node" type="my_node">
<rosparam>
key: value
foo: bar
</rosparam>
</node>
EDIT:
EDIT:
You can also make a yaml file and load it in your launch file like
<rosparam file="$(find my_pkg)/config/my_params.yaml" />