3D Printed Gripper

by vikovarga in Workshop > 3D Printing

7898 Views, 101 Favorites, 0 Comments

3D Printed Gripper

IMAG5574.jpg
3D printed 3-finger gripper linked to KUKA KR5 robotic arm in action

Components Designed in Solidworks

alap.png
fő.png
fő1.png
finger.png
motorConnect.png
fdv.png

The four holes on the bottom of the first part allow me to connect the gripper with screws to the KUKA robotic arm.

Assembly

szerelés1.png
szerelés2.png
Assembly
szerelés3.png
szerelés4.png
szerelés5.png
dd.png

First of all, the servo motor is connected to Part1. Than we can link Part1 to Part2. The upcoming steps are easily traceable based on the pictures.

Motion Test in Solidworks

3-finger gripper motion
táv.png
táv1.png
sefwff.png
dddd.png
ds.png

Mechanism: I had to transform the rotational motion into linear motion which can be understood based on the video and pictures I attached. If I rotate the motor with 106 degrees the finger is going to move approximately 50 mm. I calculated this range with a simple sketch in Solidworks.

3D Printing

IMG_4192.JPG
IMG_4193.JPG
instructables.jpg
IMAG5520.jpg

Since I do not have a 3D printer I had to order the printing method. The owner of the printer sent me some pictures of the parts. The parts of the 3D model were saved in STL format to be 3D printed. The gripper was made of PLA and it cost me about 50 dollars.

Assembling the Printed Parts

Gripper
IMAG5517[1].jpg
IMAG5523.jpg
IMAG5522.jpg

Linking the Gripper With KUKA Robotic Arm

IMAG5558.jpg
IMAG5568.jpg
IMAG5567.jpg
IMAG5576.jpg
Vid1
Vid2

Arduino Code and Wiring

ju.png
dv.png
#include 
Servo myservo;
 int potpin = 0;
 int val;
 void setup()
 {
 myservo.attach(9);
 } 
void loop()
 {
val = analogRead(potpin);                       
val = map(val, 0, 1023, 0, 105); 
myservo.write(val);
delay(15);
}