Integrated suction pump
Applicable models: myCobot 280, myPalletizer 260, mechArm 270
Product image
Specifications
Name | myCobot integrated suction pump |
---|---|
Model | myCobot integrated suction pump |
Material | ABS injection molding |
Color | White |
Number of suction cups | 1 |
Suction cup size | Diameter 20mm |
Suction weight | 50g |
Power source equipment | Suction pump box |
Fixing method | Lego connector |
Control interface | IO control |
Use environment requirements | Normal temperature and pressure |
Applicable equipment | ER myCobot 280 series, ER myPalletizer 260 series, ER mechArm 270 series, ER myBuddy 280 series |
Suction pump: Used for adsorbing objects
Introduction
Suction pump, that is, vacuum adsorption pump, has one suction nozzle and one exhaust nozzle. It has the advantages of simple structure, small size, easy use, low noise, and good self-priming ability. By controlling the suction pump kit as the end effector of the robot arm, the function of adsorbing objects is performed.
Suction pump accessories: power cord x1, DuPont line x10, one-input and two-output connection line x1, Lego technology parts x several
Working principle
When sucking objects: the air pump starts to suck air and adsorb objects and then stops, and there will be no air leakage in a short time.
When putting down objects: the electronic valve starts, the air release valve opens, and air enters the vacuum suction cup to separate from the sucked objects.
Applicable objects
- Paper/plastic sheets
- Flat and smooth objects
- Cards, etc.
Installation and use
- Check whether the accessories package is complete: Lego connectors, Dupont wires, suction pumps
Suction pump installation:
Structural installation
Insert the Lego connector into the reserved socket on the suction pump:
Align the suction pump with the connector inserted into the socket at the end of the robot arm and insert it:
Electrical connection
Select the male-female DuPont wire, and insert the female end into the socket marked with pins on the suction pump box:
Male-female DuPont wire:
Note the correspondence between the DuPont wire colors and pins in the figure:
Insert the male end into the pin at the end of the robot arm according to the given correspondence:
The left side is the suction pump pin, and the right side is the robot arm pin GND -> GND 5V -> 5V G2 -> 23 G5 -> 33
Python programming control
- 280-Pi version
from pymycobot import MyCobot280
import time
from pymycobot import PI_PORT, PI_BAUD
# Initialize a MyCobot280 object
mc = MyCobot280(PI_PORT, PI_BAUD )
# Turn on the suction pump
def pump_on():
# Open the solenoid valve
mc.set_digital_output(33, 0)
time.sleep(0.05)
# Stop the suction pump
def pump_off():
# Close the solenoid valve
mc.set_digital_output(33, 1)
time.sleep(0.05)
# The exhaust valve starts working
mc.set_digital_output(23, 0)
time.sleep(1)
mc.set_digital_output(23, 1)
time.sleep(0.05)
pump_off()
time.sleep(3)
pump_on()
time.sleep(3)
pump_off()
time.sleep(3)
- 280-M5 version
from pymycobot import MyCobot280
import time
# Initialize a MyCobot280 object
mc = MyCobot280("COM3", 115200)
# Turn on the suction pump
def pump_on():
# Open the solenoid valve
mc.set_digital_output(33, 0)
time.sleep(0.05)
# Stop the suction pump
def pump_off():
# Close the solenoid valve
mc.set_digital_output(33, 1)
time.sleep(0.05)
# The exhaust valve starts working
mc.set_digital_output(23, 0)
time.sleep(1)
mc.set_digital_output(23, 1)
time.sleep(0.05)
pump_off()
time.sleep(3)
pump_on()
time.sleep(3)
pump_off()
time.sleep(3)