You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The rqt window should be generally usable and should be able to populate some of the discovered plugins.
details
Try
# User input in terminal 1
ros2 launch dummy_robot_bringup dummy_robot_bringup_launch.py
# User input in terminal 2
rqt
In the RQT window, select 'Plugins > Visualization > Plot' in the dropdown menu. In the window that opens, set the Topic to /joint_states/position[0]. You should see a Sine wave.
With 'Plugins > Introspection > Node Graph' you should see a network of the nodes and topics that are being published and subscribed by the dummy robot.
With 'Plugins > Logging > Bag' you should be able record a ROS Bag file.
With 'Plugins > Topic > Topic Monitor' you should be able to check the /joint_states topic and view messages streaming in.
Expect
Rqt runs smoothly and the plugins work as expected.
You can find the code used to generate this test case here
This is a sanity check to ensure that the GUI tools aren't fundamentally broken.
Setup
Links
Checks
Check RQT
Launch using the
rqtcommand.The rqt window should be generally usable and should be able to populate some of the discovered plugins.
details
Try
# User input in terminal 1 ros2 launch dummy_robot_bringup dummy_robot_bringup_launch.py# User input in terminal 2 rqtIn the RQT window, select 'Plugins > Visualization > Plot' in the dropdown menu. In the window that opens, set the Topic to
/joint_states/position[0]. You should see a Sine wave.With 'Plugins > Introspection > Node Graph' you should see a network of the nodes and topics that are being published and subscribed by the dummy robot.
With 'Plugins > Logging > Bag' you should be able record a ROS Bag file.
With 'Plugins > Topic > Topic Monitor' you should be able to check the
/joint_statestopic and view messages streaming in.Expect
You can find the code used to generate this test case here