-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[develop/fetch][gazebo] update README for launching gazebo
- Loading branch information
Showing
1 changed file
with
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,10 @@ | |
First, you need to install ROS. For ROS melodic, please refer to install guide like [here](http://wiki.ros.org/melodic/Installation/Ubuntu). | ||
Please make sure your ROS Distribution is indigo, kinetic or melodic. | ||
|
||
#### The client user for indigo, kinetic melodic | ||
|
||
```bash | ||
source /opt/ros/*/setup.bash | ||
mkdir -p catkin_ws/src | ||
cd catkin_ws/src | ||
wstool init . | ||
|
@@ -53,7 +56,6 @@ wstool update -t . | |
wget https://raw.githubusercontent.com/jsk-ros-pkg/jsk_roseus/master/setup_upstream.sh -O /tmp/setup_upstream.sh | ||
bash /tmp/setup_upstream.sh -w ../ -p jsk-ros-pkg/geneus -p euslisp/jskeus | ||
|
||
source /opt/ros/$ROS_DISTRO/setup.bash | ||
rosdep install -y -r --from-paths . --ignore-src | ||
cd ../ | ||
# (optional): if you want to use roseus_resume, build roseus_resume, too. | ||
|
@@ -62,6 +64,20 @@ catkin build fetcheus jsk_fetch_startup | |
source devel/setup.bash | ||
``` | ||
|
||
#### The client user for noetic | ||
|
||
```bash | ||
source /opt/ros/noetic/setup.bash | ||
mkdir -p catkin_ws/src/jsk-ros-pkg | ||
cd catkin_ws/src/jsk-ros-pkg | ||
git clone [email protected]:jsk-ros-pkg/jsk_robot -b develop/fetch | ||
cd ../ | ||
vcs import < jsk-ros-pkg/jsk_robot/jsk_fetch_robot/jsk_fetch_user.noetic.repos | ||
cd ../ | ||
catkin build fetcheus jsk_fetch_startup | ||
source devel/setup.bash | ||
``` | ||
|
||
#### Setup Environment (For Robot Internal PC, only for advanced developer) | ||
|
||
```bash | ||
|
@@ -124,6 +140,14 @@ roslaunch fetch_gazebo simulation.launch | |
roslaunch fetch_moveit_config move_group.launch | ||
``` | ||
|
||
Or you can launch | ||
|
||
```bash | ||
roslaunch jsk_fetch_startup fetch_gazebo_bringup.launch launch_move_base:=false | ||
``` | ||
|
||
If you want to use JSK's 73B2 gazebo environment, you can launch | ||
|
||
Roseus script can be executed on Gazebo. The whole demo is in `jsk_fetch_gazebo_demo/launch/demo.launch` | ||
```bash | ||
roslaunch jsk_fetch_gazebo_demo demo.launch | ||
|