-
Notifications
You must be signed in to change notification settings - Fork 0
Release 3 #33
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
base: release-2
Are you sure you want to change the base?
Release 3 #33
Changes from all commits
ac8cf7c
15e0a2b
2647538
0cf0957
48d0f53
fc9d2fb
9c5ef6e
0e6e96d
1387cb7
cfb6b40
1af9be2
185dc2d
7aa0d18
11aa2de
cdd247c
f32cfa4
85a4442
ebc44ff
dc3b0cf
f3498f7
11d3099
fa89bc6
3838bb0
4c3f6ed
aee8c3d
8bc4de5
3a1f4f9
49332dc
95ecfba
cf4c8b4
57a3959
10e321c
14a73da
95a5c64
40fee23
742e199
fa244fd
bf5fa40
75f6385
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,17 @@ | ||
| # Request: Command to control arm | ||
| geometry_msgs/Pose target_pose | ||
| geometry_msgs/Pose target_pose # Desired end effector pose | ||
|
|
||
| --- | ||
| # Result: Final status of the arm movement | ||
| bool success # Success | ||
| string message # Result status message | ||
| geometry_msgs/Pose final_pose # Final end effector pose achieved | ||
| int32 result_code # Result code | ||
| int32 SUCCESS = 0 | ||
| int32 INVALID_GOAL = 1 | ||
| int32 GOAL_TIMEOUT = 2 | ||
| int32 CANCELLED = 3 | ||
|
|
||
| string result_message # Description of the result | ||
| geometry_msgs/Pose final_pose # Final end effector pose achieved | ||
|
|
||
| --- | ||
| # Feedback: Progress updates during arm movement | ||
| geometry_msgs/Pose current_pose # Current end effector pose | ||
| string status_message # Possible status | ||
| geometry_msgs/Pose current_pose # Current end effector pose |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,21 @@ | ||
| # Request: Command to control gripper | ||
| float64 target_position # 0.0 = fully closed, 1.0 = fully open | ||
| float64 target_position # 100.0 = fully closed, 0.0 = fully open | ||
|
||
| float64 velocity # Maximum velocity (optional, use default if 0.0) | ||
| float64 force # Maximum force/effort (optional, use default if 0.0) | ||
|
|
||
| --- | ||
| # Result: Final status of the gripper operation | ||
| bool success # Success | ||
| string message # Result status message | ||
| int32 result_code # Result code | ||
| int32 SUCCESS = 0 | ||
| int32 INVALID_GOAL = 1 | ||
| int32 GOAL_TIMEOUT = 2 | ||
| int32 CANCELLED = 3 | ||
|
|
||
| string result_message # Description of the result | ||
| float64 final_position # Final gripper position achieved | ||
|
|
||
| --- | ||
| # Feedback: Progress updates during gripper movement | ||
| float64 current_position # Current gripper position | ||
| string status_message # Possible status message | ||
| float64 measured_position # Current gripper position | ||
| float64 measured_velocity # Current gripper velocity | ||
| float64 measured_current # Current gripper current draw | ||
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.
Documentation shows incorrect parameter naming pattern. The pattern "pid_<leftarm/rightarm>.ee.<rot/pos>" doesn't match the actual parameter structure used in the code, which is "pid.<left/right>.<pos/rot>.<x/y/z>.<p/i/d>" (no "ee" component, and uses "left"/"right" not "leftarm"/"rightarm").