Arduino
MI Lab
Project
3 methods of metal extraction, a level chemistry metal extraction, a level metal extraction, ancient metal extraction methods, aqa chem 2 metal extraction, chapter 9 metal extraction and chemical reactivity, chem 2 metal extraction, chemguide metal extraction, e-waste metal extraction, eso metal extraction worth it, extraction metal gear, extraction metal gear solid 5, extraction metal gear solid v, extraction of metals from minerals, heavy metal extraction, heavy metal extraction from soil, heavy metal extraction from water, heavy metal extraction methods, history metal extraction timeline, knockhardy metal extraction, lead metal extraction, lead metal extraction process, liquid metal extraction, metal chelate extraction, metal ducting dust extraction, metal dust extraction, metal dust extraction pipe, metal dust extraction systems, metal dust extraction units, metal elements extraction, metal extraction 1, metal extraction a level, metal extraction activity, metal extraction advantages, metal extraction aluminium, metal extraction and chemical reactivity, metal extraction and chemical reactivity ppt, metal extraction and purification, metal extraction and reactivity series, metal extraction and refining, metal extraction and uses, metal extraction animation, metal extraction as chemistry, metal extraction as level chemistry, metal extraction bbc bitesize, metal extraction biomining, metal extraction blast furnace, metal extraction by bacterial oxidation of minerals, metal extraction by carbon reduction, metal extraction by electrolysis, metal extraction by heat, metal extraction by microbes, metal extraction by reduction, metal extraction by roasting, metal extraction carbon reduction, metal extraction chemical reaction, metal extraction chemistry, metal extraction companies, metal extraction companies in india, metal extraction congo, metal extraction copper, metal extraction costs, metal extraction crossword, metal extraction definition, metal extraction disadvantages, metal extraction displacement, metal extraction documentary, metal extraction ducting, metal extraction elder scrolls online, metal extraction electrolysis, metal extraction environmental impact, metal extraction equation, metal extraction eso, metal extraction ethical issues, metal extraction exam questions, metal extraction experiment, metal extraction facts, metal extraction from body, metal extraction from e waste, metal extraction from fly ash, metal extraction from motherboard, metal extraction from ore, metal extraction from ore ppt, metal extraction from rock, metal extraction from seawater, metal extraction from soil, metal extraction from sulfide ores, metal extraction from waste, metal extraction from water, metal extraction gcse, metal extraction gold, metal extraction guide, metal extraction guide tera, metal extraction history, metal extraction hose, metal extraction igcse, metal extraction impacts, metal extraction in chemistry, metal extraction in industry, metal extraction in nepal, metal extraction introduction, metal extraction iron, metal extraction is a reduction process, metal extraction issues, metal extraction jobs, metal extraction ks3, metal extraction ks4, metal extraction leaching, metal extraction lesson, metal extraction lesson plan, metal extraction machine, metal extraction meaning, metal extraction methods, metal extraction methods gcse, metal extraction methods ppt, metal extraction mining, metal extraction notes, metal extraction of aluminium, metal extraction of copper, metal extraction of gold, metal extraction of sodium, metal extraction of titanium, metal extraction of zinc, metal extraction ores, metal extraction past paper questions, metal extraction pdf, metal extraction phytomining, metal extraction pipe, metal extraction plant, metal extraction pollution, metal extraction powerpoint, metal extraction powerpoint presentation, metal extraction ppt, metal extraction practical, metal extraction process, metal extraction process pdf, metal extraction questions, metal extraction quiz, metal extraction reactivity series, metal extraction reducing agent, metal extraction reduction with carbon, metal extraction revision, metal extraction risks, metal extraction roasting, metal extraction sea nodules, metal extraction slag, metal extraction slideshare, metal extraction smelting, metal extraction song, metal extraction starter, metal extraction steps, metal extraction summary, metal extraction table, metal extraction techniques, metal extraction tera, metal extraction tera online, metal extraction tes, metal extraction test, metal extraction through chlorine metallurgy, metal extraction timeline, metal extraction titanium, metal extraction tube, metal extraction using carbon, metal extraction using electrolysis, metal extraction using heat, metal extraction using ionic liquids, metal extraction using plants, metal extraction video, metal extraction vs recycling, metal extraction waste, metal extraction wiki, metal extraction wikipedia, metal extraction with carbon, metal extraction with ionic liquids, metal extraction word search, metal extraction worksheet, metal extraction youtube, metal gear extraction trophy, metal gear ground zeroes extraction, metal gear ground zeroes extraction trophy, metal gear solid 5 extraction, metal gear solid 5 extraction trophy, metal gear solid v extraction, metal ore extraction methods, metal ore extraction video, metal oxide extraction, metal solvent extraction, metal sulphide extraction, metal workshop extraction, nickel metal extraction, nickel metal extraction process, nickel metal hydride extraction, non metal extraction, phoenix metal extraction gmbh, tera metal extraction tier 14, tier 1 metal extraction, tier 2 metal extraction, uranium metal extraction, why is metal extraction harmful to the environment
Amisha
0 Comments
Metal Extraction Automation with Arduino
[nextpage title=”Introduction” ]
Introduction
This article will give you information about the work I’ve done a recently. It is a metal sorting system as you can see in my video system design. This system is actually many different ways (eg pneumatic systems, through methods such as linear thrust) was done, but I want to take a job using the least expensive ingredients in my hand and I was doing this project, too.
Used materials
- The Arduino Mega
- Engine shield (L293D)
- FUTABA S3003 Servo
- I2C LCDs
- Conveyor belts (12v DC motor)
- Pot (10K)
- Inductive sensor (12V)
- Relay (12 V excitation)
- Power supply (12V, 5A)
[/nextpage]
Circuit diagram
[nextpage title=”Circuit diagram” ]
Conveyor passing through the material is sens relay producing metal while the sensor signal can not connect directly to the Arduino to as industrial, relay switched by Arduino information career Arduino information is read, the handle on the power thanks to the delay set the pot driving the metal material on the conveyor side of throws. The reason I use pot; It is that it facilitates calibration of the sensor according to the distance between the servo arm. The LCD panel is writing the number of the extracted material delay and set the pot.
[/nextpage]
Arduino code of the project
[nextpage title=”Arduino code of the project” ]
#
include
<Servo.h>
#
include
<AFMotor.h>\\motor.shield kütüphanesi
#
include
<Wire.h>
#
include
<LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
AF_DCMotor motor(2);
Servo servo1;
int sensorPin = A8;
int sensorValue = 0;
void setup()
{
pinMode(15,INPUT);
Serial.begin(9600);
lcd.begin();
servo1.attach(9);
motor.setSpeed(255);
motor.run(RELEASE);
lcd.setCursor(0,0);
lcd.
print
(
"HAKAN COBAN"
);
lcd.setCursor(0,1);
lcd.
print
(
"MEKATRONIK MUH."
);
delay(1000);
lcd.clear();
}
int i;
int b;
void loop()
//sonsuz döngü
{
sensorValue = analogRead(sensorPin);
sensorValue = map(sensorValue, 0, 1023, 0, 9999);
motor.run(FORWARD); ÂÂ
lcd.setCursor(0,0);
lcd.
print
(
"METAL GRB :"
);
lcd.setCursor(12,0);
lcd.
print
(b);
lcd.setCursor(0,1);
lcd.
print
(
"GECIKMEÂ Â :"
);
lcd.setCursor(12,1);
lcd.
print
(sensorValue);
if
(digitalRead(15)Â ==LOW)Â {
Serial.println(sensorValue);
delay(sensorValue*2);
// endüktif algıladıktan sonra servonun devreye girmesi için gecikmesi
for
(i=0; i<255; i++) {
servo1.write(i);
delay(1000);
//servonun konveyorun üzerinde bekleme süresi
for
(i=255; i!=0; i--) {
servo1.write(i-255);
}
b = b+1;
delay(2000);
}
else
Serial.println(sensorValue);
}
[/nextpage]
Post Comment
You must be logged in to post a comment.