Skip to content
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

Adds lerp planning_example #5

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config/lerp_planning.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
num_steps: 40
6 changes: 6 additions & 0 deletions launch/demo_lerp.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

<launch>
<include file="$(dirname)/demo.launch">
<arg name="pipeline" value="lerp"/>
</include>
</launch>
22 changes: 22 additions & 0 deletions launch/lerp_planning_pipeline.launch.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<launch>

<!-- LERP Plugin for MoveIt! -->
<arg name="planning_plugin" value="lerp_interface/LERPPlanner" />

<!-- The request adapters (plugins) used when planning with TrajOpt.
ORDER MATTERS -->
<arg name="planning_adapters" value="default_planner_request_adapters/AddTimeParameterization
default_planner_request_adapters/FixWorkspaceBounds
default_planner_request_adapters/FixStartStateBounds
default_planner_request_adapters/FixStartStateCollision
default_planner_request_adapters/FixStartStatePathConstraints" />

<arg name="start_state_max_bounds_error" value="0.1" />

<param name="planning_plugin" value="$(arg planning_plugin)" />
<param name="request_adapters" value="$(arg planning_adapters)" />
<param name="start_state_max_bounds_error" value="$(arg start_state_max_bounds_error)" />

<rosparam command="load" file="$(find panda_moveit_config)/config/lerp_planning.yaml"/>

</launch>