-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add motoman_sda10f and update README
- Loading branch information
Showing
11 changed files
with
191 additions
and
42 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,50 @@ | ||
jog_joint_node: | ||
joint_names: | ||
- arm_left_joint_1_s | ||
- arm_left_joint_2_l | ||
- arm_left_joint_3_e | ||
- arm_left_joint_4_u | ||
- arm_left_joint_5_r | ||
- arm_left_joint_6_b | ||
- arm_left_joint_7_t | ||
- arm_right_joint_1_s | ||
- arm_right_joint_2_l | ||
- arm_right_joint_3_e | ||
- arm_right_joint_4_u | ||
- arm_right_joint_5_r | ||
- arm_right_joint_6_b | ||
- arm_right_joint_7_t | ||
- torso_joint_b1 | ||
- torso_joint_b2 | ||
|
||
jog_frame_node: | ||
group_names: | ||
- arm_left | ||
- arm_right | ||
link_names: | ||
- arm_left_link_tool0 | ||
- arm_right_link_tool0 | ||
|
||
# motoman sda10f controller list seems to be broken | ||
move_group: | ||
controller_list: | ||
- name: '' | ||
action_ns: '' | ||
type: FollowJointTrajectory | ||
joints: | ||
- arm_left_joint_1_s | ||
- arm_left_joint_2_l | ||
- arm_left_joint_3_e | ||
- arm_left_joint_4_u | ||
- arm_left_joint_5_r | ||
- arm_left_joint_6_b | ||
- arm_left_joint_7_t | ||
- arm_right_joint_1_s | ||
- arm_right_joint_2_l | ||
- arm_right_joint_3_e | ||
- arm_right_joint_4_u | ||
- arm_right_joint_5_r | ||
- arm_right_joint_6_b | ||
- arm_right_joint_7_t | ||
- torso_joint_b1 | ||
- torso_joint_b2 |
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 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,20 @@ | ||
<launch> | ||
<arg name="use_joy" default="false"/> | ||
|
||
<!-- Launch jog controllers --> | ||
<rosparam command="load" | ||
file="$(find jog_controller)/config/motoman_sda10f_jog.yaml"/> | ||
<node name="jog_joint_node" pkg="jog_controller" type="jog_joint_node"> | ||
<remap from="command" to="joint_path_command"/> | ||
</node> | ||
<node name="jog_frame_node" pkg="jog_controller" type="jog_frame_node"> | ||
<remap from="command" to="joint_path_command"/> | ||
</node> | ||
<!-- Launch joypad --> | ||
<include if="$(arg use_joy)" file="$(find jog_controller)/launch/joypad.launch"> | ||
<arg name="group_name" value="manipulator"/> | ||
<arg name="frame_id" value="base_link"/> | ||
<arg name="link_name" value="tool0"/> | ||
</include> | ||
|
||
</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 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 |
---|---|---|
@@ -1,18 +1,16 @@ | ||
<launch> | ||
<include file="$(find ur_gazebo)/launch/ur5_joint_limited.launch"/> | ||
|
||
<include file="$(find ur5_moveit_config)/launch/ur5_moveit_planning_execution.launch"> | ||
<arg name="sim" value="true"/> | ||
<arg name="limited" value="false"/> | ||
</include> | ||
|
||
<include file="$(find ur5_moveit_config)/launch/moveit_rviz.launch"> | ||
<arg name="config" value="true"/> | ||
</include> | ||
<arg name="use_joy" default="false"/> | ||
|
||
<rosparam command="load" | ||
file="$(find jog_controller)/config/ur5_jog.yaml"/> | ||
<node name="jog_joint_node" pkg="jog_controller" type="jog_joint_node"/> | ||
<node name="jog_frame_node" pkg="jog_controller" type="jog_frame_node"/> | ||
|
||
<!-- Launch joypad --> | ||
<include if="$(arg use_joy)" file="$(find jog_controller)/launch/joypad.launch"> | ||
<arg name="group_name" value="manipulator"/> | ||
<arg name="frame_id" value="base_link"/> | ||
<arg name="link_name" value="link_ee"/> | ||
</include> | ||
|
||
</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