ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Alternative to parameters=[parameters_file_path]
, one can specify the parameters directly with
parameters=[
{"param1", "value1"},
{"param2", "value2"}
]
2 | No.2 Revision |
Alternative to parameters=[parameters_file_path]
, one can specify the parameters directly with
with
parameters=[
{"param1", "value1"},
{"param2", "value2"}
]]
3 | No.3 Revision |
Alternative to parameters=[parameters_file_path]
, one can specify the parameters directly with
parameters=[
{"param1", "value1"},
{"param2", "value2"}
]
as stated here
4 | No.4 Revision |
Alternative to parameters=[parameters_file_path]
, one can specify the parameters directly with
parameters=[
{"param1", {"param1": "value1"},
{"param2", {"param2": "value2"}
]
as stated here