-
Notifications
You must be signed in to change notification settings - Fork 39
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 #358 from k-okada/fake
add MoveItFakeControllerManager
- Loading branch information
Showing
4 changed files
with
51 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
controller_list: | ||
- name: fake_rarm_controller | ||
joints: | ||
- RARM_JOINT0 | ||
- RARM_JOINT1 | ||
- RARM_JOINT2 | ||
- RARM_JOINT3 | ||
- RARM_JOINT4 | ||
- RARM_JOINT5 | ||
initial: [0, 0, 1, 0, 0, 0] | ||
- name: fake_larm_controller | ||
joints: | ||
- LARM_JOINT0 | ||
- LARM_JOINT1 | ||
- LARM_JOINT2 | ||
- LARM_JOINT3 | ||
- LARM_JOINT4 | ||
- LARM_JOINT5 | ||
initial: [0, 0, 1, 0, 0, 0] | ||
- name: fake_head_controller | ||
joints: | ||
- HEAD_JOINT0 | ||
- HEAD_JOINT0 | ||
initial: [0, 0] | ||
- name: fake_torso_controller | ||
joints: | ||
- CHEST_JOINT0 | ||
initial: [0] | ||
initial: | ||
- group: right_arm | ||
pose : right_arm_initial_pose | ||
- group: left_arm | ||
pose : left_arm_initial_pose | ||
|
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
9 changes: 9 additions & 0 deletions
9
nextage_moveit_config/launch/fake_moveit_controller_manager.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,9 @@ | ||
<launch> | ||
|
||
<!-- Set the param that trajectory_execution_manager needs to find the controller plugin --> | ||
<param name="moveit_controller_manager" value="moveit_fake_controller_manager/MoveItFakeControllerManager"/> | ||
|
||
<!-- The rest of the params are specific to this plugin --> | ||
<rosparam file="$(find nextage_moveit_config)/config/fake_controllers.yaml"/> | ||
|
||
</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