-
Notifications
You must be signed in to change notification settings - Fork 0
Chainable diff drive support #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ae4a066
Pull in stretch_ros:base_controller_support
henningkayser ba474f5
Apply diff drive controller changes from MoveIt config
henningkayser 4a4fa47
Pull in DiffDriveController
henningkayser 991cad4
Publish static tf world->odom
henningkayser c5cd8b0
Configure PILZ planner
henningkayser 1c03fe0
Remove redundant UI grasp link
henningkayser 95ad6df
Configure Servo
henningkayser 2634911
Update controllers, group names in objectives
henningkayser 2ee3aa4
Add mobile base waypoints
henningkayser f86a36f
Commented config for MoveItSimpleControllerManager
henningkayser 59afc99
Update stretch_ros submodule
henningkayser 813b469
Add Odometry to MultiDOFJointState republisher
henningkayser f81eaa8
Configure MoveItSimpleControllerManager
henningkayser 8168771
Configure trajectory_execution.control_multi_dof_joint_variables
henningkayser c276457
Fix controller names in objectives
henningkayser a213108
Activate all controllers by default
henningkayser dfea888
Fix odometry repub executable
henningkayser 1d0c6a4
Reference issue for future maintenance of mdof state publisher
henningkayser 15a6a4f
Document Odometry republisher
henningkayser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,6 +1,11 @@ | ||
| [submodule "src/stretch_ros"] | ||
| path = src/stretch_ros | ||
| url = https://github.com/PickNikRobotics/stretch_ros.git | ||
| branch = base_controller_support | ||
| [submodule "src/stretch_moveit_plugins"] | ||
| path = src/stretch_moveit_plugins | ||
| url = https://github.com/PickNikRobotics/stretch_moveit_plugins.git | ||
| [submodule "src/ros2_controllers"] | ||
| path = src/ros2_controllers | ||
| url = https://github.com/henningkayser/ros2_controllers | ||
| branch = chainable-jtc-diff-drive | ||
Submodule ros2_controllers
added at
bcd220
Submodule stretch_moveit_plugins
updated
7 files
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
28 changes: 28 additions & 0 deletions
28
src/stretch_re1_pro_config/config/moveit/moveit_simple_controller_manager.yaml
This file contains hidden or 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,28 @@ | ||
| controller_names: | ||
| - stretch_controller | ||
| - stretch_base_controller | ||
|
|
||
| stretch_controller: | ||
| action_ns: follow_joint_trajectory | ||
| default: True | ||
| type: FollowJointTrajectory | ||
| joints: | ||
| - joint_lift | ||
| - joint_arm_l3 | ||
| - joint_arm_l2 | ||
| - joint_arm_l1 | ||
| - joint_arm_l0 | ||
| - joint_wrist_yaw | ||
| - joint_head_pan | ||
| - joint_head_tilt | ||
| - joint_gripper_finger_left | ||
| - joint_gripper_finger_right | ||
|
|
||
| stretch_base_controller: | ||
| action_ns: follow_joint_trajectory | ||
| default: True | ||
| type: FollowJointTrajectory | ||
| joints: | ||
| - position/x | ||
| - position/y | ||
| - position/theta |
6 changes: 6 additions & 0 deletions
6
src/stretch_re1_pro_config/config/moveit/pilz_cartesian_limits.yaml
This file contains hidden or 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,6 @@ | ||
| # Cartesian limits for the Pilz planner | ||
| cartesian_limits: | ||
| max_trans_vel: 0.1 | ||
| max_trans_acc: 0.1 | ||
| max_trans_dec: -0.1 | ||
| max_rot_vel: 0.1 |
14 changes: 14 additions & 0 deletions
14
src/stretch_re1_pro_config/config/moveit/pilz_industrial_motion_planner_planning.yaml
This file contains hidden or 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,14 @@ | ||
| planning_plugins: | ||
| - pilz_industrial_motion_planner/CommandPlanner | ||
| default_planner_config: LIN | ||
| request_adapters: | ||
| - default_planning_request_adapters/ResolveConstraintFrames | ||
| - default_planning_request_adapters/ValidateWorkspaceBounds | ||
| - default_planning_request_adapters/CheckStartStateBounds | ||
| - default_planning_request_adapters/CheckStartStateCollision | ||
| response_adapters: | ||
| - default_planning_response_adapters/ValidateSolution | ||
| - default_planning_response_adapters/DisplayMotionPath | ||
| capabilities: >- | ||
| pilz_industrial_motion_planner/MoveGroupSequenceAction | ||
| pilz_industrial_motion_planner/MoveGroupSequenceService |
This file contains hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we discussed, do you mind moving the diff-drive controller into the PickNik controllers package?