forked from macs-lab/macs_dual_arm
-
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
9c4e320
commit 4f97ddd
Showing
6 changed files
with
116 additions
and
29 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 |
---|---|---|
@@ -1,19 +1,31 @@ | ||
<launch> | ||
|
||
<group ns="left_arm"> | ||
<remap from="/follow_joint_trajectory" to="scaled_pos_traj_controller/follow_joint_trajectory"/> | ||
<include file="$(find ur5_e_moveit_config)/launch/move_group.launch"> | ||
<arg name="limited" default="false"/> | ||
<arg name="debug" default="false" /> | ||
</include> | ||
</group> | ||
<!-- | ||
# 不使用 group | ||
/follow_joint_trajectory | ||
/move_group/status | ||
<group ns="right_arm"> | ||
<remap from="/follow_joint_trajectory" to="scaled_pos_traj_controller/follow_joint_trajectory"/> | ||
<include file="$(find ur5_e_moveit_config)/launch/move_group.launch"> | ||
<arg name="limited" default="false"/> | ||
<arg name="debug" default="false" /> | ||
</include> | ||
</group> | ||
# 使用 group ns="left_arm" | ||
/left_arm/follow_joint_trajectory | ||
/left_arm/move_group/status | ||
组内的参数只在组内有效 | ||
--> | ||
<group ns="left_arm"> | ||
<remap from="/follow_joint_trajectory" to="scaled_pos_traj_controller/follow_joint_trajectory"/> | ||
<include file="$(find ur5_e_moveit_config)/launch/move_group.launch"> | ||
<arg name="limited" default="false"/> | ||
<!-- 是否使用关节限制 --> | ||
<arg name="debug" default="false" /> | ||
<!-- 是否开启调试 --> | ||
</include> | ||
</group> | ||
|
||
<group ns="right_arm"> | ||
<remap from="/follow_joint_trajectory" to="scaled_pos_traj_controller/follow_joint_trajectory"/> | ||
<include file="$(find ur5_e_moveit_config)/launch/move_group.launch"> | ||
<arg name="limited" default="false"/> | ||
<arg name="debug" default="false" /> | ||
</include> | ||
</group> | ||
|
||
</launch> |
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
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
<?xml version="1.0"?> | ||
<launch> | ||
<!-- <param name="robot_cell_description" textfile="$(find ur_e_description)/urdf/robot_cell.sdf" /> --> | ||
<!-- 使用xacro宏处理器将robot_cell.sdf文件转换为URDF格式 --> | ||
<!-- robot_cell_description 是自定义参数,用于描述完整工作单元 | ||
SDF 文件用于详细描述仿真环境和物理特性 | ||
两者结合使用可以创建完整的机器人工作环境仿真--> | ||
<param name="robot_cell_description" command="$(find xacro)/xacro --inorder '$(find ur_e_description)/urdf/robot_cell.sdf'" /> | ||
</launch> |
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