We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
I'm working with the 2f_gripper_action_server. In the Feedback message there is an apparently incorrect calculation of the gripper finger's position:
https://github.com/ros-industrial/robotiq/blob/66961ec6b6c9c493f13410d16ce32cea1648babf/robotiq_2f_gripper_action_server/src/robotiq_2f_gripper_action_server.cpp#L66
if the gripper is fully opened input.gPO is zero. If it is fully closed we got 255. (see https://assets.robotiq.com/website-assets/support_documents/document/2F-85_2F-140_Instruction_Manual_CB-Series_PDF_20190329.pdf on page 53).
This implies result.position = params.max_gap_ - input.gPO * dist_per_tick; for the resulting gipper finger positon.
result.position = params.max_gap_ - input.gPO * dist_per_tick;
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hi,
I'm working with the 2f_gripper_action_server. In the Feedback message there is an apparently incorrect calculation of the gripper finger's position:
https://github.com/ros-industrial/robotiq/blob/66961ec6b6c9c493f13410d16ce32cea1648babf/robotiq_2f_gripper_action_server/src/robotiq_2f_gripper_action_server.cpp#L66
if the gripper is fully opened input.gPO is zero. If it is fully closed we got 255.
(see https://assets.robotiq.com/website-assets/support_documents/document/2F-85_2F-140_Instruction_Manual_CB-Series_PDF_20190329.pdf on page 53).
This implies
result.position = params.max_gap_ - input.gPO * dist_per_tick;
for the resulting gipper finger positon.
The text was updated successfully, but these errors were encountered: