Dexterous Hand
Applicable models: myCobot 280, myPalletizer 260, mechArm 270
Product image
Specifications:
Name | mycobot Dexterous Gripper |
---|---|
Model | Dexterous Hand |
Process | 3D Printing |
Color | White |
Clamping Range | 20-45mm |
Transmission Mode | Gear + Connecting Rod |
Dimensions | 112×94×50mm |
Maximum Clamping Force | 100g |
Fixing Mode | Screw Fixing |
Environment Requirements | Normal Temperature and Pressure |
Control Interface | Serial Control |
Applicable equipment | ER myCobot 280 series, ER myPalletizer 260 series, ER mechArm 270 series, ER myBuddy 280 series |
Adaptive gripper: Used for gripping objects
Introduction
- The gripper is a robot component that can achieve functions similar to human hands. It has the advantages of complex structure, firm gripping of objects, not easy to fall, and easy operation. The gripper kit includes gripper accessories and Lego technology parts. The end effector of the robot arm is controlled by a programmable system to achieve functions such as object gripping and multi-point positioning.
Working principle
- Driven by a motor, the finger surface of the gripper performs linear reciprocating motion to achieve opening or closing. The acceleration and deceleration of the electric gripper can be controlled, the impact on the workpiece can be minimized, the positioning point can be controlled, and the clamping can be controlled.
Applicable objects
- Small cubes
- Small balls
- Long objects
Installation and use
Gripper installation:
Structural installation
Fix the dexterous hand to the end of the robot arm with the matching screws:
Electrical connection
Insert the robot arm control interface:
Python programming control
- 280-M5 version:
from pymycobot import MyCobot280
import time
# Initialize a MyCobot280 object
mc = MyCobot280("COM3", 115200)
mc.set_encoder(7,2048,40)#Open
time.sleep(2)
mc.set_encoder(7,2300,40)#Hold tight
time.sleep(2)
mc.set_encoder(7,2048,40)#Hold tight
- 280-Pi version:
from pymycobot import MyCobot280
from pymycobot import PI_PORT, PI_BAUD # When using the Raspberry Pi version of mycobot, you can reference these two variables to initialize MyCobot280
import time
# Initialize a MyCobot280 object
mc = MyCobot280(PI_PORT, PI_BAUD)
mc.set_encoder(7,2048,40)#Open
time.sleep(2)
mc.set_encoder(7,2300,40)#Hold tight
time.sleep(2)
mc.set_encoder(7,2048,40)#Hold tight