Amal

You might also like

Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 11

SMART GARBAG

E
MONITORINGSYSTEM
Under the mentorship of:- Dr. Sachin sharma

Name: Amal saini


Cousre:-bachelor of technology
Branch:-cse
Section:-IOT
Problem statement:-
The major concerns are garbage and agricultural challenges:-

Garbage management
• India’s garbage scale stands at 0.2 to 0.6 kilograms of garbage per head per
day
• Nearly 10 million tons of garbage collected in the metropolitan cities
• Garbage disposal has become a major issue and solid waste production .
• Improper garbage maintenance leads to many diseases due to garbage
overflow.
• Landfills are ovewrflowing in many places and there is no space to
accommodate garbage trashes.
Current challenge

This Photo by Unknown Author is licensed under CC BY-SA-NC


SOLUTION:-
• The proposed model provide real time monitoring to the garbage bins placed in various
locations .
• It provides the information of in garbage
• It also tell us how much the dusbit is full
const int trigPin = 9;
const int echoPin = 10;

float duration, distance, x=19,per;

void setup() {
pinMode(trigPin, OUTPUT);
pinMode(echoPin, INPUT);
Serial.begin(9600);
}

void loop() {
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);

duration = pulseIn(echoPin, HIGH);


distance = (duration*.0343)/2;

per=distance*100/x;
Serial.print("dusbin empty percentage: ");
Serial.println(per );

delay(1000);
}
Hardware and softwares used:-

Hardware:- Software:-
 1.ultrasonic sensor  1.Arduino IDE
 2.node MCU/ Arduino uno/ Gsm
module
 4.dustbin box customized model
Advantages of smart garbage
monitoring:-

Improved cleanliness:- in densly populated area,a rapid waste generation often leads to overflowing waste bins
and unsightly streets . Our solution enables waste collection staff to read fill levels in real time and receive notification of
waste overflows.

Dynamic routing:- the solution optimizes waste collection routes and schedules based on real time and historical
data,provides predictive analytics to enable decision making ahead of time and often consulation on waste bin allocations.

Cost reduction:- our smart waste logistics solution reduces waste collection frequency dramatically ,which enables
you to save on fuel,labor and fleet maintenance costs.

You might also like