Stephanie VicarteElizabeth VicarteIrak Mayer
Published © GPL3+

Pickup with Ease and No Touching

A pickup->delivery method using vacuum gripper suction cup system that help contact-less manage of packages and other objects.

BeginnerFull instructions provided4 hours594

Things used in this project

Hardware components

Adafruit Power Relay FeatherWing
×2
Adafruit FeatherWing Tripler
×1
SparkFun Lithium Ion Battery - 2200mAh 7.4v
×2
SparkFun Vacuum Pump - 12V
×2
SharkBite splitter
×1
SharkBite quick connect 3/8" OD to 1/4" OD
×1
1/4" tubing
×1
3/8" toubing
×1
Adafruit M4 express
×1
Vacuum Gripper Suction Cup
×4
Vacuum Gripper Elbow Fitting
×4

Story

Read more

Custom parts and enclosures

airpumpcase.stl

Air pump holding case.

Schematics

easypick.jpg

Rough draft of the system connections

Code

EasyPickJustRelay.ino

Arduino
This simple program cycles the relays on/off for 20/2.5 secs respectively.
//Vistelilabs Easy Pick project.
//4-27-2020

//Define the Pins to connect the featherwing power relay boards
//Pin 11 is for the Feather M4 Express
const int ledPin = 11;// On a Feather HUZZAH32 the pin is 27; 
const int ledPin2 = 12; 

int count = 1;

//Set the Pins for output
void setup() {
  pinMode(ledPin, OUTPUT);
  pinMode(ledPin2, OUTPUT);
}

//loop to the on/off cycle for four times then stop
void loop() {
  
    if (count < 5)
    {
      //Turn off the relays
      digitalWrite(ledPin, LOW);
      digitalWrite(ledPin2, LOW);
      //For 2.5 seconds
      delay(2500);
      //Turn on the relays
      digitalWrite(ledPin, HIGH);
      digitalWrite(ledPin2, HIGH);
      //for 20 seconds
      delay(20000);
      count++;
    }
    else
    {
      //Keep the relays off.
      digitalWrite(ledPin, LOW);
      digitalWrite(ledPin2, LOW);
    }
}

Credits

Stephanie Vicarte

Stephanie Vicarte

14 projects • 12 followers
Elizabeth Vicarte

Elizabeth Vicarte

13 projects • 7 followers
Irak Mayer

Irak Mayer

18 projects • 10 followers

Comments