-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4cbfe2d
commit 105125d
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/sh | ||
|
||
# Move to catkin_ws root | ||
cd ../../ | ||
|
||
# Launch the world containing the robot | ||
xterm -e " source devel/setup.bash; roslaunch my_robot world.launch " & | ||
|
||
sleep 10 | ||
|
||
# Launch amcl package for localization | ||
xterm -e " source devel/setup.bash; roslaunch my_robot amcl.launch " & | ||
|
||
sleep 5 | ||
|
||
# Launch rviz to localize the results | ||
xterm -e " source devel/setup.bash; roslaunch my_robot view_navigation.launch " & | ||
|
||
sleep 5 | ||
|
||
# Launch add_markers to vizualize objects in rviz | ||
xterm -e " source devel/setup.bash; roslaunch my_robot add_markers.launch " & | ||
|
||
sleep 5 | ||
|
||
# Launch pick_object to guide robot across the map | ||
xterm -e " source devel/setup.bash; roslaunch my_robot pick_objects.launch " & |