Summary of IOT Based Dumpster Monitoring using Arduino & ESP8266
This article describes a DIY IoT project to monitor dumpster levels using an ultrasonic sensor and ESP8266 Wi-Fi module. The system connects to a local webserver, displaying "Basket is Full" or "Basket is Empty" based on distance measurements relative to a 5cm threshold. It allows users to check trash status remotely via the internet and is suitable for both public and home use.
Parts used in the IOT Based Dumpster Monitoring System:
- Arduino Uno
- ESP8266 Wi-Fi module
- HC-SR04 Ultrasonic sensor
- 1K Resistors
- Breadboard
- Connecting wires
In this DIY, we are going to make an IOT based dumpster/garbage Monitoring System which will tell us that whether the trash can is empty or full through the webserver and you can know the status of your ‘Trash Can’ or ‘Dumpsters’ from anywhere in the world over the Internet. It will be very useful and can be installed in the Trash Cans at public places as well as at home.
In this IOT Project, an Ultrasonic Sensor is used for detecting whether the trash can is filled with garbage or not. Here Ultrasonic Sensor is installed at the top of Trash Can and will measure the distance of garbage from the top of Trash can and we can set a threshold value according to the size of trash can. If the distance will be less than this threshold value, means that the Trash can is full of garbage and we will print the message “Basket is Full” on the webpage and if the distance will be more than this threshold value, then we will print the message “Basket is Empty”.
Here we have set the Threshold value of 5cm in the Program code. We will use ESP8266 Wi-Fi module for connecting the Arduino to the webserver. Here we have used Local webserver to demonstrate the working of this Garbage Monitoring System.
Components Required:
- Arduino Uno (you can use any other)
- ESP8266 Wi-Fi module
- HC-SR04 Ultrasonic sensor
- 1K Resistors
- Breadboard
- Connecting wires
Read More: IOT Based Dumpster Monitoring using Arduino & ESP8266
- What is the main function of this IoT project?
The project monitors whether a trash can is empty or full and displays the status on a webserver accessible over the Internet. - How does the system detect if the trash can is full?
An ultrasonic sensor installed at the top measures the distance of the garbage from the top of the can. - What happens when the measured distance is less than the threshold value?
The system prints the message Basket is Full on the webpage. - What message appears when the distance is more than the threshold value?
The system prints the message Basket is Empty on the webpage. - What threshold value was set in the program code for this demonstration?
A threshold value of 5cm was set in the program code. - Which Wi-Fi module is used to connect the Arduino to the webserver?
The ESP8266 Wi-Fi module is used for the connection. - Can this system be used outside of a home environment?
Yes, it can be installed in trash cans at public places as well as at home. - Is the Arduino Uno the only microcontroller option available?
No, you can use any other microcontroller instead of the Arduino Uno.
