ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
55551 will be resolved to integer
and port is expecting string
, so port is getting default value.
If you don't specify the type, roslaunch will attempt to automatically determine the type. These rules are very basic:
numbers with '.'s are floating point, integers otherwise;
"true" and "false" are boolean (not case-sensitive).
all other values are strings
2 | No.2 Revision |
55551 will be resolved to integer
and port is expecting string
, so port is getting default value.value. Specifying the type attribute will solve it.
If you don't specify the type, roslaunch will attempt to automatically determine the type. These rules are very basic:
numbers with '.'s are floating point, integers otherwise;
"true" and "false" are boolean (not case-sensitive).
all other values are strings