ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The first option will read a text file, and store the contents (ie: the text in it) on the parameter server under a name that you provide.
The second option will read a binary file, encode the contents (ie: bytes) using base64 and then store the result on the parameter server under a name that you provide.
The third option will run a command (ie: a program), capture the output of that command (ie: text on stdout
) and store that on the parameter server under a name that you provide.
2 | No.2 Revision |
The first option will read a text file, and store the contents (ie: the text in it) on the parameter server under a name that you provide.
The second option will read a binary file, encode the contents (ie: bytes) using base64 and then store the result on the parameter server under a name that you provide.
The third option will run a command command (ie: a program), capture the output of that command (ie: text on stdout
) and store that on the parameter server under a name that you provide.