The Eco-Genie is an automated material sorting system that streamlines the recycling process through sensor-based detection and mechanical sorting. Developed for our Capstone Design Course (ME 4370), this project enhances recycling efficiency while reducing manual labor.
The system utilizes inductive, capacitive, and optical sensors alongside automated actuators to accurately classify and separate materials.
Read the Full ProposalThe system consists of several key components:
The following is the complete Arduino code used to control the sorting system. The system uses ultrasonic, capacitive, and inductive sensors to detect and classify materials.
#include#include LiquidCrystal_I2C lcd(0x27, 16, 2); const int trigPin = 26; const int echoPin = 28; const int capacitivePin = 24; const int inductivePin = 22;
long getUltrasonicDistance() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); long duration = pulseIn(echoPin, HIGH); return duration * 0.034 / 2; }
String determineMaterial(int capacitiveCount, int inductiveCount) { if (capacitiveCount > 25 && inductiveCount > 25) { return "Aluminum Detected"; } else if (capacitiveCount > 25 && inductiveCount <= 25) { return "Glass Detected"; } else { return "Plastic Detected"; } }
Our final design was refined across multiple iterations. Below are key images of the version 5.1 prototype: