Introduction: IoT Based Smart Dustbin

About: We provide services in Embedded Projects, Website Development, App Development, Customised Electronic Solutions and Products

In this tutorial we are going to create a IoT Based Smart Dustbin Monitoring System

We are going to monitor whether the Dustbin is full or not and if full then notify the Owner through a push notification on their phone.

Software requirements :

Blynk Application

Arduino IDE

Hardware Requirements :

Arduino Nano

Arduino Nano Sensor Shield

ESP 01 WiFi Module

Ultrasonic Sensor

Servo SG90

Infrared Sensor Module

Step 1: Ultrasonic Sensor

It emits an ultrasound at 40 000 Hz which travels through the air and if there is an object or obstacle on its path It will bounce back to the module. Considering the travel time and the speed of the sound you can calculate the distance.

Step 2: ESP8266 – 01 WiFi Module

ESP8266-01 is a Serial WiFi Transmitter and Receiver which can give any Micro-controller access to WiFi Network.

ESP8266 module is of low cost and comes pre-programmed with an AT command set firmware, meaning, you can simply hook this up to your Arduino device and get about as much WiFi-ability as a WiFi Shield offers.This module has a powerful on-board processing and storage capability that allows it to be integrated with the sensors and other application through its GPIOs .

Features :

  • Wi-Fi Direct (P2P), soft-AP
  • Integrated TCP/IP protocol stack
  • It features an integrated TR switch, balun, LNA, power amplifier and matching network
  • Equips integrated PLL, regulators, DCXO and power management units
  • Integrated low power 32-bit CPU could be used as an application
  • 1.1 / 2.0, SPI, UART
  • STBC, 1×1 MIMO, 2×1 MIMO
  • A-MPDU & A-MSDU aggregation & 0.4ms guard interval
  • Wake up and transmit packets in < 2ms
  • Standby power consumption of < 1.0mW (DTIM3)

Step 3: Servo SG90

A servo motor is an electrical device which can push or rotate an object with great precision. If you want to rotate and object at some specific angles or distance, then you use servo motor. It is just made up of simple motor which run through servo mechanism. If motor is used is DC powered then it is called DC servo motor, and if it is AC powered motor then it is called AC servo motor. We can get a very high torque servo motor in a small and light weight packages. Doe to these features they are being used in many applications like toy car, RC helicopters and planes, Robotics, Machine etc.

Step 4: Configuring Your ESP8266 – 01 WiFi Module

Connect your ESP 01 in according to the connections given below.

Then upload this code to your Arduino Uno. CODE

After Uploading the code.

Try sending the basic command : AT


You must get a OK response. (This means your ESP 01 is working Fine).

Now your ESP 01 will be automatically configured. There are two commands which we have written in the above code.

AT+CWMODE=1 ( Sets the Wi-Fi mode (Station/AP/Station+AP) )

AT+UART_DEF=9600,8,1,0,3 (This will change the baud rate to 9600 you can even set it to 115200.)

Step 5: Configuration Blynk App

Now let’s setup your Blynk App to receive data of Temperature and Humidity on Graphs.

Step 1 : Click on New Project

Step 2: Add your Project Name and which Board we are going to use, In our Case it is Arduino Nano

Step 3 : Select your Widget i.e. Level Vertical

Step 4 : Configure the Pins and Data range

Now your Blynk should Look Like this Circuit Diagram

Step 6: Circuit Diagram

In the above diagram all the connections are shown for this project IoT Based Smart Dustbin .

We have used an Arduino Nano Shield for ease of connection. Connection will be the same for Arduino Nano Shield too.

Step 7: Code

For Full Code visit - Alpha Electronz

Step 8: Video Tutorial With OUTPUT