Implementing a Subscriber Node for Turtle Pose Data in ROS

To monitor and display the reeal-time pose of a turtle in the turtlesim simulation, create a ROS subscriber node that prints pose data as the turtle moves. First, identify the topic and message type used for pose data. The turtle's pose is published on the topic /turtle1/pose with the message type turtlesim/Pose. Use ROS command-line tools to v ...

Posted on Mon, 03 Aug 2026 16:58:11 +0000 by homerjsimpson

ROS 2 Communication Patterns: Parameters and Actions

Parameters: Dynamic Node Configuration Parameters are key-value pairs used to configure node behavior at runtime. Each parameter consists of a string name and a value of supported types: bool, int64, float64, string, or byte. Unlike topics or services, parameters are not used for data exchange but for tuning node settings dynamically. To inspec ...

Posted on Mon, 22 Jun 2026 17:20:14 +0000 by dev99