ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Alternative to parameters=[parameters_file_path], one can specify the parameters directly with parameters=[ {"param1", "value1"}, {"param2", "value2"} ]

Alternative to parameters=[parameters_file_path], one can specify the parameters directly with with

parameters=[
     {"param1", "value1"},
     {"param2", "value2"}
    ]

]

Alternative to parameters=[parameters_file_path], one can specify the parameters directly with

parameters=[
    {"param1", "value1"},
    {"param2", "value2"}
]

as stated here

Alternative to parameters=[parameters_file_path], one can specify the parameters directly with

parameters=[
    {"param1", {"param1": "value1"},
    {"param2", {"param2": "value2"}
]

as stated here