-
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.
Merge pull request #9 from tork-a/add_param_exclude_joints
Add param exclude joints
- Loading branch information
Showing
15 changed files
with
237 additions
and
49 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 |
---|---|---|
|
@@ -22,3 +22,5 @@ jog_frame_node: | |
link_names: | ||
- left_hand | ||
- right_hand | ||
exclude_joint_names: | ||
- head_nod |
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
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 @@ | ||
<launch> | ||
<!-- Load model file --> | ||
<param name="robot_description" command="$(find xacro)/xacro --inorder '$(find baxter_description)/urdf/baxter.urdf.xacro'" /> | ||
|
||
<node name="tfpub" pkg="tf" type="static_transform_publisher" args="0 0 0 0 0 0 world base 100"/> | ||
|
||
<!-- Launch MoveIt! --> | ||
<include file="$(find baxter_moveit_config)/launch/baxter_grippers.launch"/> | ||
|
||
<!-- fake_joint_driver_node --> | ||
<node name="fake_joint_driver" pkg="fake_joint_driver" type="fake_joint_driver_node"> | ||
<remap from="joint_states" to="/robot/joint_states"/> | ||
</node> | ||
|
||
<!-- robot_state_publisher --> | ||
<node name="robot_state_publisher" pkg="robot_state_publisher" type="robot_state_publisher"> | ||
<remap from="joint_states" to="/robot/joint_states"/> | ||
</node> | ||
|
||
<!-- Load joint trajecotory controller --> | ||
<rosparam file="$(find jog_controller)/config/baxter_controllers.yaml" /> | ||
|
||
<node name="controller_spawner" | ||
pkg="controller_manager" type="spawner" respawn="false" | ||
args="joint_state_controller robot/limb/right robot/limb/left"/> | ||
|
||
</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
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> |
Oops, something went wrong.