Additional ROS client API methods.
Function | load |
Load node param mappings (aka private parameters) encoded in command-line arguments, e.g. _foo:=bar. See also rosgraph.names.load_mappings. @param argv: command-line arguments @param argv: [str] @return: param->value remappings... |
Function | wait |
Receive one message from topic. |
Constant | TIMEOUT |
Undocumented |
Class | _ |
Undocumented |
Class | _WFM |
Undocumented |
Function | _get |
ROS service handler to get the levels of all active loggers. |
Function | _init |
Uploads private params to the parameter server. Private params are specified via command-line remappings. |
Function | _init |
Initialize parameter server singleton |
Function | _set |
ROS service handler to set the logging level for a particular logger |
Variable | _init |
Undocumented |
Variable | _logging |
Undocumented |
Variable | _master |
Undocumented |
Variable | _master |
Undocumented |
Variable | _names |
Undocumented |
Variable | _param |
Undocumented |
Variable | _param |
Undocumented |
Variable | _unspecified |
Undocumented |
Load node param mappings (aka private parameters) encoded in command-line arguments, e.g. _foo:=bar. See also rosgraph.names.load_mappings. @param argv: command-line arguments @param argv: [str] @return: param->value remappings. @rtype: {str: val} @raises: ROSInitException
Receive one message from topic.
This will create a new subscription to the topic, receive one message, then unsubscribe.
@param topic: name of topic @type topic: str @param topic_type: topic type @type topic_type: L{rospy.Message} class @param timeout: timeout time in seconds or ROS Duration @type timeout: double|rospy.Duration @return: Message @rtype: L{rospy.Message} @raise ROSException: if specified timeout is exceeded @raise ROSInterruptException: if shutdown interrupts wait
Uploads private params to the parameter server. Private params are specified via command-line remappings.
@raises: ROSInitException