From 496267459b921ae34585034e6afe3c48a1e260de Mon Sep 17 00:00:00 2001 From: hello-sanchez Date: Wed, 25 Aug 2021 17:11:13 -0700 Subject: [PATCH] Comment out section that runs Nav stack in gazebo. --- navigation_stack.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/navigation_stack.md b/navigation_stack.md index f47f877..3dd1e8c 100644 --- a/navigation_stack.md +++ b/navigation_stack.md @@ -1,8 +1,7 @@ -## Navigation +## Navigation Stack with Actual robot stretch_navigation provides the standard ROS navigation stack as two launch files. This package utilizes gmapping, move_base, and AMCL to drive the stretch RE1 around a mapped space. Running this code will require the robot to be untethered. -First, bringing up [Stretch in the willowgarage world](gazebo_basics.md). Then run the following commands to map the space that the robot will navigate in. ```bash @@ -28,4 +27,23 @@ Rviz will show the robot in the previously mapped space, however, it's likely th It is also possible to send 2D Pose Estimates and Nav Goals programatically. In your own launch file, you may include `navigation.launch` to bring up the navigation stack. Then, you can send `move_base_msgs::MoveBaseGoal` messages in order to navigate the robot programatically. + + **Next Tutorial:** [MoveIt! Basics](moveit_basics.md)