Summary of IOT Based Dumpster Monitoring using Arduino & ESP8266
This DIY project presents an IoT-based dumpster monitoring system that detects whether a trash can is full or empty using an ultrasonic sensor. Mounted on top of the trash can, the sensor measures the distance to the garbage, comparing it to a set threshold (5cm). If the distance is less, the system indicates that the trash can is full; otherwise, it shows empty. The system uses an ESP8266 Wi-Fi module to send status updates to a webserver, allowing real-time monitoring from anywhere via the Internet. This setup is useful for both public and home trash bins.
Parts used in the IOT based Dumpster Monitoring System:
- Arduino Uno (or any compatible Arduino board)
- 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
