/web/go_to#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/web/go_to Quick Facts

Category

Touchscreen

Message type

pal_web_msgs/WebGoTo

Direction

⬅️ you normally publish to this topic.

Sets the webpage to be displayed on the touchscreen.

Quick snippets#

Publish data on the topic#
$ rostopic pub /web/go_to pal_web_msgs/WebGoTo # press Tab twice to complete

How to use in your code#

Publish to the topic using Python#
 1import rospy
 2from pal_web_msgs.msg import WebGoTo
 3
 4if __name__ == "__main__":
 5    rospy.init_node("publisher")
 6
 7    pub = rospy.Publisher("/web/go_to", WebGoTo, queue_size=10)
 8    rate = rospy.Rate(10) # 10Hz
 9    msg = WebGoTo()
10
11    while not rospy.is_shutdown():
12
13        # check https://github.com/pal-robotics/pal_msgs/tree/indigo-devel/pal_web_msgs/msg/WebGoTo.msg
14        # for the msg structure
15        # msg.data = ...
16        pub.publish(msg)
17
18        rate.sleep()