/power_status#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/power_status Quick Facts

Category

Robot management

Message type

mm11_msgs/Power

Direction

➡️ you normally subscribe to this topic.

Quick snippets#

Check the publication rate#
$ rostopic hz /power_status
Display the data published on the topic#
$ rostopic echo /power_status

How to use in your code#

Subscribe to the topic using Python#
 1import rospy
 2from mm11_msgs.msg import Power
 3
 4def on_data(msg):
 5    print(msg)
 6
 7if __name__ == "__main__":
 8
 9    rospy.init_node("subscriber")
10    rospy.Subscriber("/power_status", Power, on_data)
11    rospy.spin()