Menu
Your Cart

Smart Dustbin Project Components - Arduino Project

Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
-40 %
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Components for Smart Dustbin Project
Smart Dustbin Project Components - Arduino Project
₹1,199
₹1,999

(inc GST)

  • Stock: In Stock
  • ₹11 FlyRobo Cashback.
  • SKU: FRC-01-490

This combo contains all products needed to make a smart dustbin that opens automatically when someone comes near the dustbin. 

The Arduino Uno R3 Compatible Board is a microcontroller board that is based on the ATmega328. Arduino Uno has 14 digital input or output pins(where 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator, a USB connection, a power jack, an ICSP header, and a reset button. It has everything needed to support the microcontroller, you need to simply connect it to a computer with a USB cable or power it with an AC-to-DC adapter or battery to get started.

This HC-SR04-Ultrasonic Distance Measuring Sensor is a very popular sensor that is found in many applications where it requires measuring distance and detecting objects. The HC-SR04 ultrasonic sensor uses sonar to determine the distance to an object like bats or dolphins do. The module has two eyes-like projects in the front which form the Ultrasonic transmitter and Receiver.  

The Micro Servo 9G is lightweight, high-quality, and lightning-fast. The servo is designed to work with almost all radio control systems. It is with excellent performance that brings you to another horizon of flight.

This is the combo of 20CM Wire Color Jumper Cable, M-M, M-F, F-F 10PCS of wire in each strip of cable. It is very flexible and easily detachable to no. of wires to your requirement. Mostly it can be used for Orange Pi, Banana Pi, Raspberry Pi, Arduino, and other mini PC and development boards.

This is a general 9v Battery With a Battery Snap Connector to a DC barrel jack adapter for all your project and application needs. One can use this adapter to power up any DC barrel jack-based power connector using a standard 9V battery.

Package Includes:

1 x Arduino Uno R3 SMD Compatible Development Board with Cable

1 x Ultrasonic Module HC-SR04 Distance Measuring Sensor

1 x Tower Pro 9G Micro Servo Motor

1 x Battery 9V With Barrel Jack Connector

1 x Combo of 3 type Jumper Cables | F-F | F-M | M-M

Code for the Smart Dustbin:

Do not forget to install Servo.h Library. without this library, code will not compile in Arduino IDE software.

For more details please check this article on Smart Dustbin.

#include    //servo library
Servo servo;     
int trigPin = 5;    
int echoPin = 6;   
int servoPin = 7;
int led= 10;
long duration, dist, average;   
long aver[3];   //array for average


void setup() {       
    Serial.begin(9600);
    servo.attach(servoPin);  
    pinMode(trigPin, OUTPUT);  
    pinMode(echoPin, INPUT);  
    servo.write(0);         //close cap on power on
    delay(100);
    servo.detach(); 
} 

void measure() {  
 digitalWrite(10,HIGH);
digitalWrite(trigPin, LOW);
delayMicroseconds(5);
digitalWrite(trigPin, HIGH);
delayMicroseconds(15);
digitalWrite(trigPin, LOW);
pinMode(echoPin, INPUT);
duration = pulseIn(echoPin, HIGH);
dist = (duration/2) / 29.1;    //obtain distance
}
void loop() { 
  for (int i=0;i<=2;i++) {   //average distance
    measure();               
   aver[i]=dist;            
    delay(10);              //delay between measurements
  }
 dist=(aver[0]+aver[1]+aver[2])/3;    

if ( dist<50 ) {
//Change distance as per your need
 servo.attach(servoPin);
  delay(1);
 servo.write(0);  
 delay(3000);       
 servo.write(150);    
 delay(1000);
 servo.detach();      
}
Serial.print(dist);
}
Arduino
Clock Speed

16 MHz

Flash Memory

32 KB

Input Voltage

7-12V (Recommended)

Microcontroller Chip

ATmega328

Model Type

UNO Rev R3

Servo Motor
Model

SG-90

Operating Voltage

4.8-6 V

Questions12 Answers12 | Expand All
Can i get GST invoice for the order ?
Shubham Bhausaheb Modake
  • Yes, You can claim GST credit if you have a GST number. To do it you have to mention the GST number at the time of checkout. GST option appears in the Billing Address. If you are an existing customer of flyrobo then you can log in to your account ( Account → Address Book → Edit Address) and Then enter your GST number.
    FlyRobo[ 16/11/2022 ]
    Was this answer helpful?790
Include coding in Arduino Uno ??
I purchas this project but I don't think Arduino Uno coding in including this Arduino
Kharva Manav
  • Dear Sir,

    Arduino board is not pre-coded. You need to upload the code by yourself. This process is very easy. if you did not know how to do it Please mail us at support@flyrobo.in we will guide you for the same.

    FlyRobo[ 09/02/2022 ]
    Was this answer helpful?7
what about code to run the project
i need complete code to run the projec and i need you to add a new small feature for it is it possible
praveen kumar
  • Here is the code to for the smart ductbin.

    You can modify this code as per your use. 

     

    Do not forget to install the servo library.

    #include    //servo library
    Servo servo;     
    int trigPin = 5;    
    int echoPin = 6;   
    int servoPin = 7;
    int led= 10;
    long duration, dist, average;   
    long aver[3];   //array for average
    
    
    void setup() {       
        Serial.begin(9600);
        servo.attach(servoPin);  
        pinMode(trigPin, OUTPUT);  
        pinMode(echoPin, INPUT);  
        servo.write(0);         //close cap on power on
        delay(100);
        servo.detach(); 
    } 
    
    void measure() {  
     digitalWrite(10,HIGH);
    digitalWrite(trigPin, LOW);
    delayMicroseconds(5);
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(15);
    digitalWrite(trigPin, LOW);
    pinMode(echoPin, INPUT);
    duration = pulseIn(echoPin, HIGH);
    dist = (duration/2) / 29.1;    //obtain distance
    }
    void loop() { 
      for (int i=0;i<=2;i++) {   //average distance
        measure();               
       aver[i]=dist;            
        delay(10);              //delay between measurements
      }
     dist=(aver[0]+aver[1]+aver[2])/3;    
    
    if ( dist<50 ) {
    //Change distance as per your need
     servo.attach(servoPin);
      delay(1);
     servo.write(0);  
     delay(3000);       
     servo.write(150);    
     delay(1000);
     servo.detach();      
    }
    Serial.print(dist);
    }
    FlyRobo[ 27/11/2021 ]
    Was this answer helpful?5
It also give bucket
Amit Prasad
  • No, bucket will not comes with it.
    FlyRobo[ 10/05/2022 ]
    Was this answer helpful?2
For which max size dustbin these components are capable
For 2 feet height dustbin will it work properly????
Himanshu Singh
  • The size of the dustbin does not matter. The moving part in the dustbin is its cap. if the size of the dustbin is big but you can make its cap a little small cap, so that Tower Pro servo can move it easily.
    Flyrobo[ 25/05/2023 ]
    Was this answer helpful?0
do we need to assemble it or it's pre-assembled
saiteja
  • No, these are just components to make a smart dustbin. You need to assemble it. Note: Dustbin dose does not come with this product.
    To check the all components that come with this kit, kindly check the product description.
    Flyrobo[ 13/03/2023 ]
    Was this answer helpful?0
Dustbin are available in kit
Aniket Laxman Patil
  • No, Dustbin will not comes with it.
    FlyRobo[ 19/07/2022 ]
    Was this answer helpful?-1
You'll provide the project report with the project too?
I'm diploma student and I am preparing a final year project I will purchase your project will you give me the PPT or prepared file of the project too ? I want to see your PPT first
Akshat jain
  • No sir. We do not provide PPT or any other Documents with the kit.
    FlyRobo[ 25/04/2022 ]
    Was this answer helpful?-3
You'll provide the project report in this project?
Arun
  • With this product, you will get all components required to make the project. if you required technical support to make this project then you can contact us at support@flyrobo.in, but the project report will not include in it.
    FlyRobo[ 29/06/2022 ]
    Was this answer helpful?-4
This is just a components or you will assemble all the components and provide it us a working model
Muthu Prabhu N
  • No, this kit comes with components. You are required to assemble it.

    You can also mail us at support@flyrobo.in for technical support and assembling instruction.


    FlyRobo[ 26/03/2022 ]
    Was this answer helpful?-4
Is the bin is given to me if I purchase it???
I mean the yellow
Sayan Adak
  • You will receive only electronic components. Dustbin is not included in product.
    FlyRobo[ 06/12/2022 ]
    Was this answer helpful?-7
When will delivered order?
Ajeet
  • Order will be delivered within 1-3 days in metro city, 3-5 days in other city and 4-7 days in villages or small city. This is the average time of delivery in express shipping. but can change with different locations and different situations.
    FlyRobo[ 16/07/2021 ]
    Was this answer helpful?-1100
Showing 1 to 12 of 12 (1 pages)

Write a review

Note: HTML is not translated!
Bad Good

 

This Video is made by FlyRobo customer.
NameSakshi Sangale 
StateMaharashtra

 

 

This Video is made by FlyRobo customer.
NameRajesh Bharti 
StateMaharashtra

 

The product is currently Out-of-Stock. Enter your email address below and we will notify you as soon as the product is available.

Name
Email
Phone
Comments