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

Revision history [back]

Adding \0 at the end of the string worked as a workaround for me. For example:

    realsense_node = Node(
        package='realsense2_camera',
        executable='realsense2_camera_node',
        parameters=[
        {
            'serial_no': '123456789\0',
        }],
    )