-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
1 changed file
with
9 additions
and
5 deletions.
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 |
---|---|---|
|
@@ -64,10 +64,8 @@ Skip any of below steps is not applicable. | |
1. Download the required repositories and install package dependencies: | ||
``` | ||
cd $COLCON_WS | ||
git clone [email protected]:UniversalRobots/Universal_Robots_ROS2_Ignition_Simulation.git src/ur_simulation_gz | ||
vcs import src --input src/Universal_Robots_ROS2_Ignition_Simulation/ur_simulation_gz.<ros-distro>.repos | ||
rosdep install --ignore-src --from-paths src -y | ||
cd .. | ||
git clone -b ros2 https://github.com/UniversalRobots/Universal_Robots_ROS2_Ignition_Simulation.git src/ur_simulation_gz | ||
rosdep update && rosdep install --ignore-src --from-paths src -y | ||
``` | ||
|
||
|
||
|
@@ -76,10 +74,16 @@ Skip any of below steps is not applicable. | |
To configure and build workspace execute following commands: | ||
``` | ||
cd $COLCON_WS | ||
colcon build --symlink-install --mixin rel-with-deb-info compile-commands ccache | ||
colcon build --symlink-install | ||
``` | ||
|
||
## Running Executable | ||
First, source your workspace | ||
|
||
``` | ||
source $COLCON_WS/install/setup.bash | ||
``` | ||
|
||
``` | ||
ros2 launch ur_simulation_gz ur_sim_control.launch.py | ||
``` | ||
|