[πŸ€” ROS2?] /touch_web_state#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/touch_web_state Quick Facts

Category

πŸ–₯️ Touchscreen

Message type

pal_web_msgs/msg/TouchWeb

Direction

➑️ you normally subscribe to this topic.

Quick snippets#

Check the publication rate#
$ ros2 topic hz /touch_web_state
Display the data published on the topic#
$ ros2 topic echo /touch_web_state

How to use in your code#

Subscribe to the topic using Python#
 1#!/usr/bin/env python
 2
 3import rclpy
 4from rclpy.node import Node
 5
 6from pal_web_msgs.msg import TouchWeb
 7
 8
 9class TouchWebStateSubscriber(Node):
10
11    def __init__(self):
12        super().__init__('touch_web_state_subscriber')
13        self.subscription = self.create_subscription(
14            TouchWeb,
15            '/touch_web_state',
16            self.listener_callback,
17            10)
18
19    def listener_callback(self, msg):
20        self.get_logger().info('I heard: "%s"' % msg.data)
21
22
23if __name__ == '__main__':
24    rclpy.init(args=args)
25
26    subscriber = TouchWebStateSubscriber()
27
28    rclpy.spin(subscriber)
29
30    rclpy.shutdown()