pneumatic gripper

Compatible models: myCobot 320, myCobot Pro 630

product icon

pi

Specifications:

name mycobot320 pneumatic gripper
Model model myCobotPro_Gripper_Air_10
craft Metal + 7500 Nylon
Clamping rangeClamp size 0-8mm
Clamp force Outer diameter 34N Inner diameter 45N
Repeatability precision ±0.01mm
Lifetime one year
drive mode drive pneumatic
transfer method Piston cylinder
size 67.3×38×23.6mm
weightweight 180g
Fixed method Fixed screw fixed
Use environment requirements Temperature and pressure
control interface control I/O control
Applicable equipment ER myCobot 320 M5 ER myCobot 320 Pi ER myCobot Pro 63png0

Pneumatic Gripper: used for gripping objects

Introduction

  • Pneumatic grippers, also known as pneumatic fingers or pneumatic grippers, are actuators that use compressed air as power to grip or grab workpieces. It is small in size, light in weight, compact in appearance, capable of single- and two-way grabbing, automatic centering, high repeatability, and automatic control of the magnetic switch.

  • Pneumatic gripper set includes gripper flange, air pump, φ8 air pipe, φ6 air pipe, φ8-6 quick connector, solenoid valve and cables. Its main function is to replace human grasping work, which can effectively improve production efficiency and work safety. An external suction pump is required.

working principle

  • Single piston: the axis drives the crank, and the air claw is driven by the piston to open and close. A corresponding crank groove is respectively arranged on the two claw pieces. In order to reduce the frictional resistance, the claw piece and the body are connected by a steel ball slide rail structure.

  • Double piston: It is operated by two pistons, and each piston is connected with a pneumatic finger by a roller and a double crank to form a special drive unit. Realize that the pneumatic fingers always move axially to the center, and each finger cannot move independently. Parallel jaw cylinder If the finger moves in the opposite direction, the previously compressed piston is in the exhausted state, while the other piston is in the compressed state.

Applicable object

  • The volume is smaller than the clamping stroke

  • The weight is less than the maximum clamping weight

  • Custom fingertips can expand more items

Appearance introduction

pi

pi

Specifications

Cylinder body (mm) 6 10 16 20
Guide bearing width 5 7 9 12
use fluid Air
action mode Double acting
Minimum working pressure 0.15MPa 0.06MPa 0.05MPa
Maximum working pressure 0.7MPa
Ambient and fluid temperature Without magnetic switch: -10~+70℃, with magnetic switch: -10~+60℃ (but for freezing)
Piston speed 50-500mm/s
Allowable kinetic energy J 0.0125 0.025 0.05 0.1
Give oil unnecessary
buffer Rubber bumpers on both ends

Mall link:https://shop-elephantrobotics-com.translate.goog/collections/mycobot-pro-600/products/air-parallel-grippers-air-compressor?_x_tr_sl=auto&_x_tr_tl=zh-CN


Installed for use

  • Required for use with an air compressor: alt text

    1. Insert the black plug into the plug;

    2. insert the matching red hose into the socket on the machine:
      alt text

    3. The red button is the on/off switch, pull it out to turn it on, press it back in to turn it off: alt text
  • The clamping jaws are mounted:

    You can view the installation instructions for the corresponding accessories in the video:

    1. Connect the other end of the red hose from the air compressor to the solenoid valve connection:
      alt text
    2. Unscrew the other end of the solenoid valve for the activation of the gripper to control opening and closing:
      alt text
      alt text
    3. Use the two matching clear hoses with one end connected to the two ports of the solenoid valve:
      alt text
    4. The other end of the transparent hose is connected to the two connections of the gripper jaws:
      alt text
    5. Attach the gripper to the end of the arm with the matching screws:
      alt text
  • Electrical connection:

    1. Connect the black wire to the GND of the robot arm base, and the red wire to any one of OUT1~OUT6, and change the pin number of the subsequent programme according to the interface you choose, here we use OUT1: alt text
  • Software driver test:

    Test that the jaws are available after installation, using myBlockly. myblockly download

    1. After confirming that the structural and electrical connections are complete, start the robot arm and open the myblockly software when the graphical interface appears.
    2. Modify the baud rate to 115200:
    3. Find Basic in the list on the left and select the Set Pin Out module:
    4. Set pin number to '1' and output to '0':
    5. Find Time and select the Sleep module:
    6. Set the time as required, here set to 2s:
    7. Repeat the above steps for the final setup as follows:
    8. Click on the green Run button in the upper right corner to see the jaws close-open once.
  • Programming Development:

    Programming development of jaws using python. python sownload

    1. Create a new python file:
      Right click on the desired file path to create a new python file:

      The name of the file can be changed as needed

    2. Perform function programming:

      The code is as follows:

      • Pi Version:
      from pymycobot.mycobot import MyCobot
      from pymycobot import PI_PORT, PI_BAUD # When using the Raspberry Pi version of mycobot, you can refer to these two variables for MyCobot initialisation
      import time
      
      # Initialise a MyCobot object
      mc = MyCobot(PI_PORT, 115200)
      
      # Control the jaws to close-open:
      # Use the gripper state interface 0 for open, 1 for closed
      mc.set_basic_output(1, 0)
      time.sleep(1)
      mc.set_basic_output(2, 1)
      time.sleep(1)
      mc.set_basic_output(1, 1)
      time.sleep(1)
      mc.set_basic_output(2, 0)
      time.sleep(1)
      
      # See the python API for details on interface usage.
      
    3. Save the file and close it, and open a command-line terminal by right-clicking on an empty space in the folder.

      输入:

      python AirGripper.py
      

      Clamping jaws can be seen closed-open

results matching ""

    No results matching ""