ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
You can create a launch file to run rviz with a specific config file like this :
<launch>
<node name="rviz" pkg="rviz" type="rviz" args="-d $(find turtlebot3_follower)/rviz/tb3_follower.rviz"/>
</launch>
Or you can use rosrun
and specify the config file :
rosrun rviz rviz -d $(rospack find turtlebot3_follower)/rviz/tb3_follower.rviz