Topics#
ROS Sugar provides classes to configure a ROS2 topics as a Component Input/Output.
Topic Configuration Class#
Configured using:
name: [str], ROS2 topic name.
msg_type: [Union[ros_sugar.supported_types.SupportedType, str]], ROS2 message type, passed as a string or as a type.
qos_profile: QoSConfig, See usage in example below.
Provides:
ros_msg_type: [type], Provides the ROS2 message type of the topic.
Usage Example#
from ros_sugar.config import Topic
topic = Topic(name='/local_map', msg_type='OccupancyGrid')