Skip to content

Commit

Permalink
Merge pull request #86 from elephantrobotics/demo_add_en
Browse files Browse the repository at this point in the history
Demo add en
  • Loading branch information
TheFive666 authored Sep 10, 2024
2 parents 57500f7 + 5f3dc82 commit 037c797
Show file tree
Hide file tree
Showing 8 changed files with 81 additions and 4 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Single-ended suction pump

> **Compatible models:** myCobot 320, myCobot Pro 600, myCobot Pro 630
## Product images

<img src="./img/0.jpg" alt="" width="60%" height="60%" />

**Specifications**

| Name | Single-ended suction pump |
| ------------ | --------------------------------------------- |
|Suction pump box size|150mmX150mmX108mm|
|Suction pump length|106mm|
|Suction cup diameter|25mm|
|Tube length|1m|
|Working voltage|24V|
|Rated current|1A|
|Own weight|2kg|
|Rated load |1kg |
|Flow rate|10-15L/min|
|Negative pressure|-85Kpa|
|Fixed mode |Screw fixed |
|Use environment requirements |Normal temperature and pressure
| Control interface | IO control | |
| Applicable equipment | myCobot 320, myCobot Pro 600, myCobot Pro 630 |
<!-- | Service life | One year | -->

**Single-head suction pump**: Used for adsorbing objects

**Introduction**

- The suction cup suction pump is connected to the object to be adsorbed through the suction cup, pipe and other components, and the suction cup is vacuumed, causing the internal air pressure to change from normal pressure to negative pressure, and the pressure difference between the external atmospheric pressure and this negative pressure is used to achieve the purpose of adsorbing the object.

**Working principle**

- Start the vacuum equipment to suck, so that negative air pressure is generated in the suction cup, so that the object to be lifted is firmly sucked, and the object to be lifted can be transported.

- When the object to be lifted is transported to the destination, the vacuum suction cup is steadily inflated, so that the negative air pressure in the vacuum suction cup changes to zero air pressure or slightly positive air pressure, and the vacuum suction cup is separated from the object to be lifted, thereby completing the task of lifting and transporting heavy objects.

**Applicable objects** Applicable to flat objects

## Hardware installation
First install the suction pump on the end of the robot
![](./img/4.jpg)

Then connect the wire of the suction pump control box to the base IO of the robot
![](./img/5.png)

## Python control

**M5 version**
```python
from pymycobot import MyCobot,utils
import time
arm=MyCobot(utils.get_port_list()[0])
for i in range(1):
arm.set_basic_output(1,0)#Turn on the suction pump
time.sleep(2)
arm.set_basic_output(1,1)#Turn off the suction pump
time.sleep(2)

```
**PI version**
```python
from pymycobot import MyCobot,PI_PORT,PI_BAUD
import time
arm=MyCobot(PI_PORT,PI_BAUD)
for i in range(1):
arm.set_basic_output(1,0)#Open the suction pump
time.sleep(2)
arm.set_basic_output(1,1)#Close the suction pump
time.sleep(2)
```
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
### gitbook-en

- M5 version:
https://docs.elephantrobotics.com/docs/mycobot-320-m5-en/
https://docs.elephantrobotics.com/docs/mycobot-320-m5-en-test/
- Pi version:
https://docs.elephantrobotics.com/docs/mycobot-320-pi-en/
https://docs.elephantrobotics.com/docs/mycobot-320-pi-en-test/

### gitbook-cn

- M5 version:
https://docs.elephantrobotics.com/docs/mycobot-320-m5-cn/
https://docs.elephantrobotics.com/docs/mycobot-320-m5-cn-test/
- Pi version:
https://docs.elephantrobotics.com/docs/mycobot-320-pi-cn/
https://docs.elephantrobotics.com/docs/mycobot-320-pi-cn-test/

### Product Diagram

Expand Down
1 change: 1 addition & 0 deletions SUMMARY_320_M5.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- [1.4.6 CameraModulePro](1-ProductIntroduction/1.4-AccessoriesTools/1.4.3-Camera/1-CameraModulePro.md)
- [1.4.7 PenHolderPro](1-ProductIntroduction/1.4-AccessoriesTools/1.4.4-Other/1-PenHolderPro.md)
- [1.4.8 PhoneHolderPro](1-ProductIntroduction/1.4-AccessoriesTools/1.4.4-Other/2-PhoneHolderPro.md)
- [1.4.9 Single-ended suction pump](1-ProductIntroduction/1.4-AccessoriesTools/1.4.2-PumpCup/singel_pump_en.md)

- [2 Product Feature](2-ProductFeature/2.1_320_M5_product/README.md)

Expand Down
1 change: 1 addition & 0 deletions SUMMARY_320_PI.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [1.4.6 CameraModulePro](1-ProductIntroduction/1.4-AccessoriesTools/1.4.3-Camera/1-CameraModulePro.md)
- [1.4.7 PenHolderPro](1-ProductIntroduction/1.4-AccessoriesTools/1.4.4-Other/1-PenHolderPro.md)
- [1.4.8 PhoneHolderPro](1-ProductIntroduction/1.4-AccessoriesTools/1.4.4-Other/2-PhoneHolderPro.md)
- [1.4.9 Single-ended suction pump](1-ProductIntroduction/1.4-AccessoriesTools/1.4.2-PumpCup/singel_pump_en.md)

- [2 Product Feature](2-ProductFeature/2.2_320_PI_product/README.md)
- [2.1 MachineSpecification](2-ProductFeature/2.2_320_PI_product/2.2.1-MachineSpecification.md)
Expand Down

0 comments on commit 037c797

Please sign in to comment.