Clients
Generic Client
GenericClient
Inherits from: ROSClient
A generic ROS client that can handle arbitrary message types and processing functions.
This class inherits from ROSClient and provides functionality for publishing and processing generic ROS messages with optional custom processing functions.
GenericClient
Initialize the generic client.
For generic client, you also need to include the following keys:
- “msg_type”: The ROS message type
- “fn”: The function to process the message
Arguments
publish_msg
Publish a message to the configured topic. If a processing function is defined, it will be called before publishing.
get_msg
Get the most recent message.
Returns
The most recently published/received message
Was this page helpful?