Skip to content

Trajecotry Bleding in robot client #17

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

Open
wants to merge 6 commits into
base: abbott_scenario
Choose a base branch
from
Open
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 sr_manipulation_interfaces/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ set(srv_files
srv/PublishPoseAsTF.srv
srv/RemoveObjects.srv
srv/GetObjectPose.srv
srv/MoveObject.srv
srv/AttachObject.srv
srv/DetachObject.srv
srv/MoveToPose.srv
Expand Down
3 changes: 3 additions & 0 deletions sr_manipulation_interfaces/action/Manip.action
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ bool disable_scene_handling

# only plan, not execution
bool only_plan
float64 blend_radius
bool add_to_blending_queue

# enforce the planner profile (empty means use default)
string planner_profile
Expand All @@ -32,6 +34,7 @@ string gripper_cmd_action_name
string[] controller_names
float64 velocity_scaling_factor
float64 acceleration_scaling_factor
float64 allowed_planning_time
bool preempt_ok
---
# final state effectively reached
Expand Down
2 changes: 2 additions & 0 deletions sr_manipulation_interfaces/msg/ManipType.msg
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ int8 MANIP_MOVE_POSTPLACE=55
int8 MANIP_GRIPPER_ADJUST=100
int8 MANIP_GRIPPER_OPEN=101
int8 MANIP_GRIPPER_CLOSE=102
# additional actions
int8 EXECUTE_MOVE_SEQUENCE=120
6 changes: 6 additions & 0 deletions sr_manipulation_interfaces/srv/MoveObject.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Request
string object_id
geometry_msgs/PoseStamped pose
---
# Response
ServiceResult result
Loading