SlideShare a Scribd company logo
1 of 16
Nineveh University
Electronics Engineering
Systems and control
Designing a smart trash system for battle
packages cites sorting
Preparation by
Osama Noor
Bakr Ayad
Harith Ali
Supervisor by
Mr.Nashwan Zayour
Chapter One
1.1Introduction:
The separation of materials to facilitate waste recycling and utilization
is very important in preserving the environment. This development will
facilitate the material recycling process, reduce the time consumed,
and reduce costs In this research we will shed light on the parts of the
project, its mechanism of work, its importance and the ideas
developed on this idea.
Aim Of System
Smart system separating 4 materials (paper, plastic, glass and metal)
1.2 The Problems
1- The similarity of material properties, which caused us some
kind of error in sensor readings.
2- Problems in time The more sensors used, the more time spent.
3- The difference in current and the consumed voltage is different
from one sensor to another, and this needs to use multiple sources
to feed the sensors.
4-There is no sensor that directly determines the type of material
1.3 Performance index
1-reliablity
2-easy to apply
1.4 Control system performance
1-minimum steady state error
2-good stability performance
3-resonable system respons speed
4-The effect of noise is very small or neglected
Chapter Two
The main ingredients
2.1 – Arduino Uno
2.2 - IR sensor
2.3 – Inductive proximity sensor
2.4 - Laser sensor (transmitter and receiver)
2.5 - FSR sensor
2.6 - LED
2.1 Arduino UNO
It is the controller that depends on this project. It is the one that organizes
the work of sensors in addition to programming them according to the
conditions. It is programmed through a USB connection, and it can also be
supplied with the POWER. It can also work on an external source. It has a
regulator that regulates the external and internal voltage. It has a storage
capacity of 32 KB.
Microcontroller ATmega328
Operating Voltage 5V
Input Voltage(recommended) 7-12V
Input Voltage (limits) 6-20V
Digital I/O Pins 14 (of which 6 provide PWM
output)
Analog Input Pins 6
DC Current per I/O Pin 40 mA
DC Current for 3.3V Pin 50 mA
Flash Memory 32 KB (ATmega328) of which 0.5
KBused by bootloader
SRAM 2 KB (ATmega328)
EEPROM 1 KB (ATmega328)
Clock Speed 16 MHz
2.2 - IR sensor
An IR sensor that senses any object in front of it that has been used in this
project in order to distinguish in it all materials that contain a transmitter and
receiver integrated into one panel.Figure 2.1 shows the parts of the sensor
2.2.1 :Technical Specifications :
Fig 2.12.2.1 : Equation
2.3 – Inductive proximity sensor
An inductive proximity sensor is a non-contact electronic proximity sensor. It is used for
positioning and detection of metal objects. The sensing range of an inductive switch is dependent
on the type of metal being detected. Ferrous metals, such as iron and steel, allow for a longer
sensing range, while nonferrous metals, such as aluminum and copper, may reduce the sensing
range by up to 60 percent. Since the output of an inductive sensor has two possible states, an
inductive sensor is sometimes referred to as an inductive proximity switch.Typical operational
range : up to 5mm . changes with metal type
Output current: 100 mA max
Current consumption: 2.0 mA max.
Voltage: Greater Than 7 V
Leakage Current: Greater Than 6 mA
2.3.1 :Technical Specifications :
Fig.2.22.3.1 : Equation
2.4 - Laser sensor (transmitter and receiver)
Use this sensor to distinguish transparent parts, such as glass. Through the laser transmitter
of the light and there is a receiver for the light, a signal is given to the Arduino if the
transparent part is in front of it because it will pass the light through it.there is an oscillating
tube can generate a shockwave in a frequency of 180KHz. After amplified by a transistor, the
shockwave is applied to the laser tube for In the receiver, there is a receiving tube, matching
to the oscillating tube, can receive the reflected light.
2.4.1 :Technical Specifications :
Fig.2.3
Boost converter chip PT1301
Operating voltage 2.5V-5.0V
Dimensions 53.0mm*18.0mm
Fixing hole size 2.0mm
Effective distance 0.8m(typ), 1.5m(max)
2.4.1 : Equation
Distance=CT
C=Light Intensity
T=Time
2.5 - FSR sensor
Force-sensing resistors consist of a conductive polymer, which changes resistance in a
predictable manner following application of force to its surface. They are normally
supplied as a polymer sheet or ink that can be applied by screen printing. The sensing film
consists of both electrically conducting and non-conducting particles suspended in matrix.
The particles are sub-micrometre sizes, and are formulated to reduce the temperature
dependence, improve mechanical properties and increase surface durability. Applying a
force to the surface of the sensing film causes particles to touch the conducting
electrodes, changing the resistance of the film.
Fig.2.4
2.5.1 :Technical Specifications :
Pressure induction range: 20g-10kg
Size: 5 x 4cm / 1.97 x 1.57inch
Weight: 3g
Activation time: <0.01s
Resistor 600 ohm
Response time: < 10ms
2.5.2 : Equation
2.6.LED
An LED is a small light (it stands for "light emitting diode") that works with relatively little
power. The Arduino board has one built-in on digital pin .
Fig.2.5
2.6.1 :Technical Specifications :
2.6.2 : Equation
Chapter Three
1.1 Implemented project Circuit
Fig 3.1
1.2 Code Implementation
int inductive=8;
int FSR=A0;
int IR=2;
int liser=4;
int Paper=12;
int Glass=9;
int Metal=7;
int Plastic=13;
void setup() { // put your setup code here,
to run once:
pinMode(inductive,INPUT);
pinMode(liser, INPUT);
pinMode(IR, INPUT);
pinMode(Metal, OUTPUT);
pinMode(Paper,OUTPUT);
pinMode(Glass,OUTPUT);
pinMode(Plastic,OUTPUT);
}
void loop() {
int lis= digitalRead(liser);
int F=analogRead(FSR);
int Ind = digitalRead(inductive);
int IRR = digitalRead(IR);// read
Laser sensor
if (( lis==LOW) && ( Ind==HIGH )
&& ( F < 10) && (IRR==0) )
{delay(500);
digitalWrite(Paper,HIGH);
digitalWrite(Metal,LOW);
digitalWrite(Glass,LOW);
digitalWrite(Plastic,LOW); }
3.3 Error
If you use each sensor alone, there is a large error rate. But together, the sensitivity
ratio decreases by a large percentage due to the presence of more than one
condition in the sensitivity of the material. The sensor can also be deceived, for
example, if the metal contains a drink, then the pressure sensor will sense it as a
glass, but the laser does not pass light This leads to the condition not being met.
Also, the laser cannot tell the glass from the plastic if it is transparent, but it is the
pressure sensor that senses the difference in weight between them. The wrong
conclusion is there, but if all conditions are met, for example, the champion of your
plastic in which water is water. Here it will be heavy, which leads to the illusion of
flexible pressure sensors as glass and illusion of the laser as well because it is
transparent, therefore the Arduino will identify it as glass for its heavy weight and
transparent color.
Chapter Four
4.1 Conclusion
The project is fairly good at first applying the idea by Arduino needs more
development as mentioned earlier and reducing error, but due to thecurrent
status of Corona virus and time constraints and required sensors we could
not develop it more and support quality. We hope this research is somewhat
helpful in achieving benefit, even if it is only a little.
4.2 Future Work
In the future, the project can be updated and the mechanical part implemented, as
well as developed by linking it to an audio sensor that thanks anyone who throws
waste into the trash. It opens and closes automatically and upon completion it
stops opening. Replacing the weight sensor with an induction sensor is more
efficient and flexible in identifying materials and reducing errors, and replacing the
laser sensor with a glass sensor also helps reduce incoming error and supports
time at cost.
Thank you
For our honorable teachers
Thanks to colleagues and parents
Thanks to all
If you have a question, you can ask..?
END

More Related Content

What's hot

Example D.1 W-shape tension member
Example D.1 W-shape tension memberExample D.1 W-shape tension member
Example D.1 W-shape tension memberSDC Verifier
 
Lecture 7 modelling-of__real_world_systems
Lecture 7 modelling-of__real_world_systemsLecture 7 modelling-of__real_world_systems
Lecture 7 modelling-of__real_world_systemsSaifullah Memon
 
Engineering Vibration 4th Edition Inman Solutions Manual
Engineering Vibration 4th Edition Inman Solutions ManualEngineering Vibration 4th Edition Inman Solutions Manual
Engineering Vibration 4th Edition Inman Solutions Manualrularezevu
 
Shear And Moment Diagrams
Shear And Moment DiagramsShear And Moment Diagrams
Shear And Moment DiagramsAmr Hamed
 
Solutions manual for engineering mechanics dynamics 13th edition by hibbeler
Solutions manual for engineering mechanics dynamics 13th edition by hibbelerSolutions manual for engineering mechanics dynamics 13th edition by hibbeler
Solutions manual for engineering mechanics dynamics 13th edition by hibbelertable3252
 

What's hot (6)

Example D.1 W-shape tension member
Example D.1 W-shape tension memberExample D.1 W-shape tension member
Example D.1 W-shape tension member
 
Lecture 7 modelling-of__real_world_systems
Lecture 7 modelling-of__real_world_systemsLecture 7 modelling-of__real_world_systems
Lecture 7 modelling-of__real_world_systems
 
Engineering Vibration 4th Edition Inman Solutions Manual
Engineering Vibration 4th Edition Inman Solutions ManualEngineering Vibration 4th Edition Inman Solutions Manual
Engineering Vibration 4th Edition Inman Solutions Manual
 
Shear And Moment Diagrams
Shear And Moment DiagramsShear And Moment Diagrams
Shear And Moment Diagrams
 
Solutions manual for engineering mechanics dynamics 13th edition by hibbeler
Solutions manual for engineering mechanics dynamics 13th edition by hibbelerSolutions manual for engineering mechanics dynamics 13th edition by hibbeler
Solutions manual for engineering mechanics dynamics 13th edition by hibbeler
 
Jacobi method for MATLAB
Jacobi method for MATLAB Jacobi method for MATLAB
Jacobi method for MATLAB
 

Similar to Smart trash system for material sorting

IRJET- Intruder Detection Security System
IRJET- Intruder Detection Security SystemIRJET- Intruder Detection Security System
IRJET- Intruder Detection Security SystemIRJET Journal
 
Smart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likharSmart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likharShivnaresh Likhar
 
Shiv smart door ppt
Shiv smart door pptShiv smart door ppt
Shiv smart door pptMahesh Patil
 
Report on automatic door
Report on automatic doorReport on automatic door
Report on automatic doorIndira Kundu
 
IRJET-Laser Based Security System for Home
IRJET-Laser Based Security System for HomeIRJET-Laser Based Security System for Home
IRJET-Laser Based Security System for HomeIRJET Journal
 
IRJET- Implementation of Wireless Sensor in Coal Mine Safety System using Zigbee
IRJET- Implementation of Wireless Sensor in Coal Mine Safety System using ZigbeeIRJET- Implementation of Wireless Sensor in Coal Mine Safety System using Zigbee
IRJET- Implementation of Wireless Sensor in Coal Mine Safety System using ZigbeeIRJET Journal
 
Short Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoShort Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoIRJET Journal
 
A Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch ScreenA Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch ScreenIJTET Journal
 
IRJET- Cable Fault Detection using IoT
IRJET- Cable Fault Detection using IoTIRJET- Cable Fault Detection using IoT
IRJET- Cable Fault Detection using IoTIRJET Journal
 
Fiberotdrtesting 121227042919-phpapp03
Fiberotdrtesting 121227042919-phpapp03Fiberotdrtesting 121227042919-phpapp03
Fiberotdrtesting 121227042919-phpapp03Luis Santos
 
Ultrasonic level meter
Ultrasonic level meterUltrasonic level meter
Ultrasonic level meterhandson28
 
Density based-traffic-light-control-system project-2 (3)
Density based-traffic-light-control-system project-2 (3)Density based-traffic-light-control-system project-2 (3)
Density based-traffic-light-control-system project-2 (3)Rishik kanth
 
IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET Journal
 
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET Journal
 
ULTRASONIC SENSOR DISTANCE CALCULATE
ULTRASONIC SENSOR DISTANCE CALCULATEULTRASONIC SENSOR DISTANCE CALCULATE
ULTRASONIC SENSOR DISTANCE CALCULATETechno Electronics
 
Characteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance MeasurementCharacteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance MeasurementIRJET Journal
 
IRJET - Device for Avoiding Underground Cable Cut using Microcontroller
IRJET - Device for Avoiding Underground Cable Cut using MicrocontrollerIRJET - Device for Avoiding Underground Cable Cut using Microcontroller
IRJET - Device for Avoiding Underground Cable Cut using MicrocontrollerIRJET Journal
 
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET Journal
 

Similar to Smart trash system for material sorting (20)

IRJET- Intruder Detection Security System
IRJET- Intruder Detection Security SystemIRJET- Intruder Detection Security System
IRJET- Intruder Detection Security System
 
Smart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likharSmart door project ppt shivnaresh likhar
Smart door project ppt shivnaresh likhar
 
Shiv smart door ppt
Shiv smart door pptShiv smart door ppt
Shiv smart door ppt
 
Report on automatic door
Report on automatic doorReport on automatic door
Report on automatic door
 
IRJET-Laser Based Security System for Home
IRJET-Laser Based Security System for HomeIRJET-Laser Based Security System for Home
IRJET-Laser Based Security System for Home
 
IRJET- Implementation of Wireless Sensor in Coal Mine Safety System using Zigbee
IRJET- Implementation of Wireless Sensor in Coal Mine Safety System using ZigbeeIRJET- Implementation of Wireless Sensor in Coal Mine Safety System using Zigbee
IRJET- Implementation of Wireless Sensor in Coal Mine Safety System using Zigbee
 
Short Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoShort Range Radar System using Arduino Uno
Short Range Radar System using Arduino Uno
 
A Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch ScreenA Smart Handheld Measuring and Testing Electronic Device with Touch Screen
A Smart Handheld Measuring and Testing Electronic Device with Touch Screen
 
IRJET- Cable Fault Detection using IoT
IRJET- Cable Fault Detection using IoTIRJET- Cable Fault Detection using IoT
IRJET- Cable Fault Detection using IoT
 
Fiberotdrtesting 121227042919-phpapp03
Fiberotdrtesting 121227042919-phpapp03Fiberotdrtesting 121227042919-phpapp03
Fiberotdrtesting 121227042919-phpapp03
 
Ultrasonic level meter
Ultrasonic level meterUltrasonic level meter
Ultrasonic level meter
 
Density based-traffic-light-control-system project-2 (3)
Density based-traffic-light-control-system project-2 (3)Density based-traffic-light-control-system project-2 (3)
Density based-traffic-light-control-system project-2 (3)
 
IRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using ArduinoIRJET- Smart Blind Stick using Arduino
IRJET- Smart Blind Stick using Arduino
 
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)IRJET-  	  Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
IRJET- Obstacle Detection using Ultrasonic Sensor in MAV (Micro Air Vehicle)
 
OTDR Testing
OTDR TestingOTDR Testing
OTDR Testing
 
ULTRASONIC SENSOR DISTANCE CALCULATE
ULTRASONIC SENSOR DISTANCE CALCULATEULTRASONIC SENSOR DISTANCE CALCULATE
ULTRASONIC SENSOR DISTANCE CALCULATE
 
biometrics
biometricsbiometrics
biometrics
 
Characteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance MeasurementCharacteristics of Different Sensors used for Distance Measurement
Characteristics of Different Sensors used for Distance Measurement
 
IRJET - Device for Avoiding Underground Cable Cut using Microcontroller
IRJET - Device for Avoiding Underground Cable Cut using MicrocontrollerIRJET - Device for Avoiding Underground Cable Cut using Microcontroller
IRJET - Device for Avoiding Underground Cable Cut using Microcontroller
 
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
 

Recently uploaded

247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 

Smart trash system for material sorting

  • 1. Nineveh University Electronics Engineering Systems and control Designing a smart trash system for battle packages cites sorting Preparation by Osama Noor Bakr Ayad Harith Ali Supervisor by Mr.Nashwan Zayour
  • 2. Chapter One 1.1Introduction: The separation of materials to facilitate waste recycling and utilization is very important in preserving the environment. This development will facilitate the material recycling process, reduce the time consumed, and reduce costs In this research we will shed light on the parts of the project, its mechanism of work, its importance and the ideas developed on this idea. Aim Of System Smart system separating 4 materials (paper, plastic, glass and metal)
  • 3. 1.2 The Problems 1- The similarity of material properties, which caused us some kind of error in sensor readings. 2- Problems in time The more sensors used, the more time spent. 3- The difference in current and the consumed voltage is different from one sensor to another, and this needs to use multiple sources to feed the sensors. 4-There is no sensor that directly determines the type of material 1.3 Performance index 1-reliablity 2-easy to apply 1.4 Control system performance 1-minimum steady state error 2-good stability performance 3-resonable system respons speed 4-The effect of noise is very small or neglected
  • 4. Chapter Two The main ingredients 2.1 – Arduino Uno 2.2 - IR sensor 2.3 – Inductive proximity sensor 2.4 - Laser sensor (transmitter and receiver) 2.5 - FSR sensor 2.6 - LED
  • 5. 2.1 Arduino UNO It is the controller that depends on this project. It is the one that organizes the work of sensors in addition to programming them according to the conditions. It is programmed through a USB connection, and it can also be supplied with the POWER. It can also work on an external source. It has a regulator that regulates the external and internal voltage. It has a storage capacity of 32 KB. Microcontroller ATmega328 Operating Voltage 5V Input Voltage(recommended) 7-12V Input Voltage (limits) 6-20V Digital I/O Pins 14 (of which 6 provide PWM output) Analog Input Pins 6 DC Current per I/O Pin 40 mA DC Current for 3.3V Pin 50 mA Flash Memory 32 KB (ATmega328) of which 0.5 KBused by bootloader SRAM 2 KB (ATmega328) EEPROM 1 KB (ATmega328) Clock Speed 16 MHz
  • 6. 2.2 - IR sensor An IR sensor that senses any object in front of it that has been used in this project in order to distinguish in it all materials that contain a transmitter and receiver integrated into one panel.Figure 2.1 shows the parts of the sensor 2.2.1 :Technical Specifications : Fig 2.12.2.1 : Equation
  • 7. 2.3 – Inductive proximity sensor An inductive proximity sensor is a non-contact electronic proximity sensor. It is used for positioning and detection of metal objects. The sensing range of an inductive switch is dependent on the type of metal being detected. Ferrous metals, such as iron and steel, allow for a longer sensing range, while nonferrous metals, such as aluminum and copper, may reduce the sensing range by up to 60 percent. Since the output of an inductive sensor has two possible states, an inductive sensor is sometimes referred to as an inductive proximity switch.Typical operational range : up to 5mm . changes with metal type Output current: 100 mA max Current consumption: 2.0 mA max. Voltage: Greater Than 7 V Leakage Current: Greater Than 6 mA 2.3.1 :Technical Specifications : Fig.2.22.3.1 : Equation
  • 8. 2.4 - Laser sensor (transmitter and receiver) Use this sensor to distinguish transparent parts, such as glass. Through the laser transmitter of the light and there is a receiver for the light, a signal is given to the Arduino if the transparent part is in front of it because it will pass the light through it.there is an oscillating tube can generate a shockwave in a frequency of 180KHz. After amplified by a transistor, the shockwave is applied to the laser tube for In the receiver, there is a receiving tube, matching to the oscillating tube, can receive the reflected light. 2.4.1 :Technical Specifications : Fig.2.3 Boost converter chip PT1301 Operating voltage 2.5V-5.0V Dimensions 53.0mm*18.0mm Fixing hole size 2.0mm Effective distance 0.8m(typ), 1.5m(max) 2.4.1 : Equation Distance=CT C=Light Intensity T=Time
  • 9. 2.5 - FSR sensor Force-sensing resistors consist of a conductive polymer, which changes resistance in a predictable manner following application of force to its surface. They are normally supplied as a polymer sheet or ink that can be applied by screen printing. The sensing film consists of both electrically conducting and non-conducting particles suspended in matrix. The particles are sub-micrometre sizes, and are formulated to reduce the temperature dependence, improve mechanical properties and increase surface durability. Applying a force to the surface of the sensing film causes particles to touch the conducting electrodes, changing the resistance of the film. Fig.2.4 2.5.1 :Technical Specifications : Pressure induction range: 20g-10kg Size: 5 x 4cm / 1.97 x 1.57inch Weight: 3g Activation time: <0.01s Resistor 600 ohm Response time: < 10ms 2.5.2 : Equation
  • 10. 2.6.LED An LED is a small light (it stands for "light emitting diode") that works with relatively little power. The Arduino board has one built-in on digital pin . Fig.2.5 2.6.1 :Technical Specifications : 2.6.2 : Equation
  • 11. Chapter Three 1.1 Implemented project Circuit Fig 3.1
  • 12. 1.2 Code Implementation int inductive=8; int FSR=A0; int IR=2; int liser=4; int Paper=12; int Glass=9; int Metal=7; int Plastic=13; void setup() { // put your setup code here, to run once: pinMode(inductive,INPUT); pinMode(liser, INPUT); pinMode(IR, INPUT); pinMode(Metal, OUTPUT); pinMode(Paper,OUTPUT); pinMode(Glass,OUTPUT); pinMode(Plastic,OUTPUT); } void loop() { int lis= digitalRead(liser); int F=analogRead(FSR); int Ind = digitalRead(inductive); int IRR = digitalRead(IR);// read Laser sensor if (( lis==LOW) && ( Ind==HIGH ) && ( F < 10) && (IRR==0) ) {delay(500); digitalWrite(Paper,HIGH); digitalWrite(Metal,LOW); digitalWrite(Glass,LOW); digitalWrite(Plastic,LOW); }
  • 13. 3.3 Error If you use each sensor alone, there is a large error rate. But together, the sensitivity ratio decreases by a large percentage due to the presence of more than one condition in the sensitivity of the material. The sensor can also be deceived, for example, if the metal contains a drink, then the pressure sensor will sense it as a glass, but the laser does not pass light This leads to the condition not being met. Also, the laser cannot tell the glass from the plastic if it is transparent, but it is the pressure sensor that senses the difference in weight between them. The wrong conclusion is there, but if all conditions are met, for example, the champion of your plastic in which water is water. Here it will be heavy, which leads to the illusion of flexible pressure sensors as glass and illusion of the laser as well because it is transparent, therefore the Arduino will identify it as glass for its heavy weight and transparent color.
  • 14. Chapter Four 4.1 Conclusion The project is fairly good at first applying the idea by Arduino needs more development as mentioned earlier and reducing error, but due to thecurrent status of Corona virus and time constraints and required sensors we could not develop it more and support quality. We hope this research is somewhat helpful in achieving benefit, even if it is only a little. 4.2 Future Work In the future, the project can be updated and the mechanical part implemented, as well as developed by linking it to an audio sensor that thanks anyone who throws waste into the trash. It opens and closes automatically and upon completion it stops opening. Replacing the weight sensor with an induction sensor is more efficient and flexible in identifying materials and reducing errors, and replacing the laser sensor with a glass sensor also helps reduce incoming error and supports time at cost.
  • 15. Thank you For our honorable teachers Thanks to colleagues and parents Thanks to all If you have a question, you can ask..?
  • 16. END