loadrobot('robotiq2F85') - Missing joints or constraints
Show older comments
Hello,
I want to model the Robotiq gripper 2F-85 which is already in Matlab included.
I load the robot, set the position for a joint on the left finger and visualize it:
clear; clc; close all;
robot = loadrobot('robotiq2F85', 'DataFormat', 'row');
showdetails(robot);
q = homeConfiguration(robot);
q(1) = 0.7;
f = figure;
f.Theme = "light";
show(robot, q, "PreservePlot", false, "Frames", "off");
view(90,0)
axis equal
axis tight
The problem is that the connection between the `left/right_inner_knuckle` and the `left/right_inner_finger` is missing as you can see in the figure.
Has anybody encountered this problem already - I guess I have to add some sort of constraint to the rigidBodyTree...
Thanks!
Homepage gripper: https://robotiq.com/products/adaptive-grippers
Datasheet gripper: https://blog.robotiq.com/hubfs/support-files/Product-sheet-2F-Adaptive-Gripper-EN-Tomahawk.pdf
Answers (0)
Categories
Find more on Robotics in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!