March 2018
Intermediate to advanced
1396 pages
42h 14m
English
If everything is fine, you can see the topic list using the rostopic command:
$ rostopic list
The node will publish three topics. We will work with /imu/data in this section. First of all, we are going to see the type and the data sent by this topic. To see the type and the fields, use the following command lines:
$ rostopic type /imu
$ rosmsg show sensor_msgs/Imu

The /imu topic is sensor_msg/Imu. The fields are used to indicate the orientation, acceleration, and velocity. In our example, we will use the orientation field.
Check a message to see a real example of the data sent. You can do it with the following ...