https://docs.ros.org

The Robot Operating System (ROS) is a set of software libraries and tools that help you build robot applications.

In-depth

Nodes

The ROS graph is a network of ROS 2 elements processing data together at the same time. It encompasses all executables and the connections between them if you were to map them all out and visualize them.

Each node in ROS should be responsible for a single, modular purpose, e.g. controlling the wheel motors or publishing the sensor data from a laser range-finder. Each node can send and receive data from other nodes via topics, services, actions, or parameters.

Topics

Topics are one of the main ways in which data is moved between nodes and therefore between different parts of the system. A node may publish data to any number of topics and simultaneously have subscriptions to any number of topics.

Topics have types, more commonly known as interfaces. These dictate the message format that is allowed through the topic. An example is the topic type geometry_msgs/msg/Twist, which has a message format of:

Vector3  linear
    float64 x
	float64 y
	float64 z
Vector3  angular
    float64 x
    float64 y
    
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		float64 z

An example of a message that follows this interface is:

linear:
  x: 2.0
  y: 0.0
  z: 0.0
angular:
  x: 0.0
  y: 0.0
  z: 0.0

Services

Services are another method of communication for nodes in the ROS graph. Services are based on a call-and-response model versus the publisher-subscriber model of topics. While topics allow nodes to subscribe to data streams and get continual updates, services only provide data when they are specifically called by a client.

  • Typically, nodes will have two kinds of services: ROS-specific and node-specific services. The list of ROS-specific services are:
    • /*/describe_parameters
    • /*/get_parameter_types
    • /*/get_parameters
    • /*/list_parameters
    • /*/set_parameters
    • /*/set_parameters_atomically

Cheatsheets

Meta

PurposeCommand
Run an executableros2 run <package_name> <executable_name>
SubcommandDescription
launchRun a launch file
runRun a package specific executable
nodeVarious node related sub-commands
topicVarious topic related sub-commands
serviceVarious service related sub-commands
actionVarious action related sub-commands
bagVarious rosbag related sub-commands
componentVarious component related sub-commands
daemonVarious daemon related sub-commands
doctorCheck ROS setup and other potential issues
interfaceShow information about ROS interfaces
lifecycleVarious lifecycle related sub-commands
multicastVarious multicast related sub-commands
paramVarious param related sub-commands
pkgVarious package related sub-commands
securityVarious security related sub-commands

Nodes

PurposeCommand
List nodesros2 node list
Get info about a noderos2 node info <node_name>

Topics

PurposeCommand
List topicsros2 topic list
List topics with typesros2 topic list -t
Get info about topicros2 topic info <topic_name>
See data being published to topicros2 topic echo <topic_name>
Publish a message to a topicros2 topic pub <topic_name> <msg_type> '<args>'
Publish the message onceros2 topic pub --once ...
Get rate of data being published to topicros2 topic hz <topic_name>
Get bandwidth of data being published to topicros2 topic bw <topic_name>
List topics of given typeros2 topic find <topic_type>
SubcommandsDescription
listOutput a list of available topics
infoPrint information about a topic
pubPublish a message to a topic
echoSubscribe to a topic and display received messages
hzPrint the average publishing rate to screen
bwDisplay bandwidth used by topic
findOutput a list of available topics of a given type
delayDisplay delay of topic from timestamp in header
typePrint a topic’s type

Services

PurposeCommand
List servicesros2 service list
Get type of serviceros2 service type <service_name>

Oddly Specific

idk what to do with this information, but it feels like these might be useful

ROS CLI

Publishing with timestamps

When publishing messages with timestamps, pub has two methods to automatically fill them out with the current time. For messages with a std_msgs/msg/Header, the header field can be set to auto to fill out the stamp field.

ros2 topic pub /pose geometry_msgs/msg/PoseStamped '{header: "auto", pose: {position: {x: 1.0, y: 2.0, z: 3.0}}}'

If the message does not use a full header, but just has a field with type builtin_interfaces/msg/Time, that can be set to the value now.

ros2 topic pub /reference sensor_msgs/msg/TimeReference '{header: "auto", time_ref: "now", source: "dumy"}'