Parameter list from launch file
I'm using rosserial to pull a list of gains from the parameter server, but I can't seem to figure out how to use the <param>
tag to create a list of values in a launch file.
EDIT: Specifically, trying to make one parameter of 'list' type, and then could be pulled in one go as shown here.
EDIT2: <rosparam param = "~pid">[0.1, 0.1, 0.1, 100]</rosparam>
works to load a list, however roslaunch seems to automatically parse the values as strings
EDIT3: <rosparam param = "pid">[0.1, 0.1, 0.1, 100.0]</rosparam>
works fine