/interaction_profile_manager/parameter_updates#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/interaction_profile_manager/parameter_updates Quick Facts

Category

Robot management

Message type

dynamic_reconfigure/Config

Direction

⬅️ you normally publish to this topic.

Quick snippets#

Publish data on the topic#
$ rostopic pub /interaction_profile_manager/parameter_updates dynamic_reconfigure/Config # press Tab twice to complete

How to use in your code#

Publish to the topic using Python#
 1import rospy
 2from dynamic_reconfigure.msg import Config
 3
 4if __name__ == "__main__":
 5    rospy.init_node("publisher")
 6
 7    pub = rospy.Publisher("/interaction_profile_manager/parameter_updates", Config, queue_size=10)
 8    rate = rospy.Rate(10) # 10Hz
 9    msg = Config()
10
11    while not rospy.is_shutdown():
12
13        # check http://docs.ros.org/en/api/dynamic_reconfigure/html/msg/Config.html
14        # for the msg structure
15        # msg.data = ...
16        pub.publish(msg)
17
18        rate.sleep()