How to make smart dustbin || Arduino project || INNOVISION ||

Поделиться
HTML-код
  • Опубликовано: 15 окт 2020
  • Come on!! Let's join the journey of making a smart dustbin with arduino uno, servo motor and ultrasonic sensor
    link for codes and circuit diagram - drive.google.com/drive/folder...
    #SmartDustbin #howToMakeSmartDustbin #ElectricalEngineering
  • НаукаНаука

Комментарии • 119

  • @DhanishS-gy3gn
    @DhanishS-gy3gn 2 месяца назад +2

    This project is work very well thank you I am beginner for arduino first I try led blink project second I try this project.

  • @kirtansewakunwarsingh6784
    @kirtansewakunwarsingh6784 3 года назад +1

    Very good hardit... 👌

  • @gurneeshkaur8062
    @gurneeshkaur8062 3 года назад +3

    Wow 😍😍😍

  • @anaclaro635
    @anaclaro635 3 месяца назад

    Genial y muchas gracias por compartir el código.

  • @kamalanganisawmya-im5xe
    @kamalanganisawmya-im5xe 4 месяца назад

    This is very good thanks❤👍👍

  • @NasuhaAshar
    @NasuhaAshar Год назад +1

    wowwwww

  • @user-on8wk8uo1i
    @user-on8wk8uo1i 7 месяцев назад

    Thanku u so much sir ❤

  • @glaucus6730
    @glaucus6730 3 года назад +3

    FIRST 🎉

  • @bu_3lash235
    @bu_3lash235 Год назад

    When i but the code and try to upload it they say ( Trig is not declared in this scope ) why ?

  • @naitikvideobavla702
    @naitikvideobavla702 3 месяца назад

    Thank you for project ❤🎉

  • @goofyahh8637
    @goofyahh8637 Год назад +2

    Hi, is there any way we can make the bin only open for biodegradable? Like paper and such. I want to make a similar project except it would only open to assigned type of waste. Pls help.

    • @Flaretech.in_
      @Flaretech.in_  Год назад

      Yeah we can do that by making two different compartments in the bin for biodegradable and non biodegradable

    • @goofyahh8637
      @goofyahh8637 Год назад

      @@Flaretech.in_ how can we make the bin identify what's bio and what's on tho

  • @Vickysinha04
    @Vickysinha04 Месяц назад +1

    Sir adino ko mobail se kase coding kare please bataiyega😢😢😢

  • @NIGHTCORENEPAL
    @NIGHTCORENEPAL 4 месяца назад

    Battery in which pins can you please reply?

  • @user-on8wk8uo1i
    @user-on8wk8uo1i 6 месяцев назад

    Sir 9v battery is safe plz reply fast

  • @pamelakhayelilunalo8542
    @pamelakhayelilunalo8542 2 года назад +1

    hey. can i use the same code is i am using the esp8266 microcontroller. i know i have to change the pin values, but other than that will the code be compatible.

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      I have never used that microcontroller so i dont know if it will work

  • @johnmarklapenid8172
    @johnmarklapenid8172 8 месяцев назад

    What is the wire called?

  • @ruchitasandhanshiv2653
    @ruchitasandhanshiv2653 2 года назад +2

    Which board and port we have to select while doing coding in Arduino ide ??

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      Board is arduino uno and the port at which you have connected is to be selected

    • @wanghooizhao8042
      @wanghooizhao8042 Год назад

      @@Flaretech.in_ how to use the code i just can open at notepad ,you open the code with what app

  • @deepashakya655
    @deepashakya655 3 года назад +3

    Sir isme code work nahi kar rha h servo motor bahut jaldi move kar rha h code m timing kitni h or distance bhi

    • @deepashakya655
      @deepashakya655 3 года назад +1

      Sir please say something response kariye sir mera project work nahi kar rha h what i can do sir

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      Hath sensor ke samne lane ke baad servo move karti hai 4.5sec baad waapis aati hai default position pe

  • @user-ev3do1hy5p
    @user-ev3do1hy5p 8 месяцев назад

    Library??

  • @undergaming_
    @undergaming_ Год назад +1

    We can use the arduino nano board ?

  • @sivangod2655
    @sivangod2655 10 месяцев назад

    Bro your code working but servo motor automatically run and uldrasonic sensor not sence the object please tell this problem 🥺

    • @AsthaaDas
      @AsthaaDas 8 месяцев назад

      Hello same thing happened with me.... Did u find any solution to this?

  • @Basic-classes
    @Basic-classes 2 года назад +1

    hello sir .. compile krne par sg90 not define bata raha h please help🙏

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      #include //servo library
      Servo sg90;
      int echo = 7;
      int trig = 6;
      int servopin = 8;
      int distance;
      int duration;
      void setup() {
      sg90.attach(8);
      pinMode(trig, OUTPUT);
      pinMode(echo, INPUT);
      }
      void loop() {
      digitalWrite(trig,0);
      delay(2);
      digitalWrite(trig,1);
      delayMicroseconds(10);
      digitalWrite(trig,0);
      duration = pulseIn(echo,1);
      distance = duration*0.034/2;
      if ( distance

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      @Satish .bhagat copy and paste this code

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      Aapne pure code nhi copy kare hai yeh wale karlo

  • @bindusingh8545
    @bindusingh8545 2 года назад

    Can you please tell how u manage to put two jumper in 1 slot

    • @bindusingh8545
      @bindusingh8545 2 года назад +1

      Like you see in the diagram it is there that vcc neads 5v and servo also need 5v so tell how to connect the wire pls answer fast

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      Cut both of the wires and join them then you have to attach a male jumper wire to it which is half cutted

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      Or you can also connect the servo to 3.3v pin

  • @HuaweiHuawei-vk1ks
    @HuaweiHuawei-vk1ks 2 года назад +1

    Hello,can we make using arduino maker uno x board

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      Im not sure abt that , but the better way to make this is by doing the wiring of sensors with arduino and uploading the code to arduino
      Link for codes and circuit in description

    • @HuaweiHuawei-vk1ks
      @HuaweiHuawei-vk1ks 2 года назад +1

      @@Flaretech.in_ okey...thanks 😊

    • @HuaweiHuawei-vk1ks
      @HuaweiHuawei-vk1ks 2 года назад +1

      @@Flaretech.in_ how to reset arduino board?

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      @Huawei Huawei just open arduino software and upload that code already written there

  • @yatharthbhatt941
    @yatharthbhatt941 2 года назад +2

    can we use anthere code for dustbin pl reple fast

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      You need to install arduino software in your system and then paste the codes and upload to your board

    • @yatharthbhatt941
      @yatharthbhatt941 2 года назад +1

      you can send me code means paste in comment box and while i am copying code so in software it is saying that code error pl help

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      #include //servo library
      Servo sg90;
      int echo = 7;
      int trig = 6;
      int servopin = 8;
      int distance;
      int duration;
      void setup() {
      sg90.attach(8);
      pinMode(trig, OUTPUT);
      pinMode(echo, INPUT);
      }
      void loop() {
      digitalWrite(trig,0);
      delay(2);
      digitalWrite(trig,1);
      delayMicroseconds(10);
      digitalWrite(trig,0);
      duration = pulseIn(echo,1);
      distance = duration*0.034/2;
      if ( distance

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      @@yatharthbhatt941 tell me which error its showing?

  • @muhammedbabayode7542
    @muhammedbabayode7542 2 года назад +2

    Thank you very much for this video.
    please, i need to make some adjustments to this beautiful project.
    First, i want to include a level sensor that detects when the dustbin is full , and closes permanently.
    Also, i need to include a RED indicator light to show that the bin is full and a GREEN indicator light to show that the bin is functional. The RED indicator will call the attention of the management team to empty the dustbin manually.
    please, how do i go about that?
    Thanks in anticipation of your prompt feedback

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +4

      For checking that the dustbin is full you can add an IR sensor or an ultrasonic sensor on the lid which detects if the bin is full and turns on the the red led and if the bin isnt full it turns on the green led you can do this simply by just adding some lines of code and you can message me on my instagram for further help link is in the about section🙂

    • @muhammedbabayode7542
      @muhammedbabayode7542 2 года назад +2

      I have messaged you on Instagram.
      I am waiting your feedback.

    • @beginnerpianoplayer5763
      @beginnerpianoplayer5763 2 года назад +1

      I also want this function ?? How can I do that

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      Contact me on Instagram

    • @beginnerpianoplayer5763
      @beginnerpianoplayer5763 2 года назад

      @@Flaretech.in_ I messaged you!

  • @jorbethmaximarvallejosasen3695
    @jorbethmaximarvallejosasen3695 21 день назад

    oe pon elcodigo bien pe >:v

  • @AISMOOTHIEPH99
    @AISMOOTHIEPH99 9 месяцев назад

    does servo motor really keeps spinning?

    • @ajemm29
      @ajemm29 Месяц назад +1

      Depends on what motor servo you buy . I think for this project, you should buy the 180° not the 360°

  • @lavenderph8714
    @lavenderph8714 3 года назад +2

    It says there is error on my code but i just copied your code paste it.

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      check the updated codes

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +4

      #include //servo library
      Servo sg90;
      int echo = 7;
      int trig = 6;
      int servopin = 8;
      int distance;
      int duration;
      void setup() {
      sg90.attach(8);
      pinMode(trig, OUTPUT);
      pinMode(echo, INPUT);

      }
      void loop() {
      digitalWrite(trig,0);
      delay(2);
      digitalWrite(trig,1);
      delayMicroseconds(10);
      digitalWrite(trig,0);
      duration = pulseIn(echo,1);
      distance = duration*0.034/2;

      if ( distance

    • @lavenderph8714
      @lavenderph8714 3 года назад +2

      @@Flaretech.in_ TYSM IT WORKED YESS!!!

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      @@lavenderph8714 your welcome😀
      Dont forget to share with your friends

  • @ruchitasandhanshiv2653
    @ruchitasandhanshiv2653 2 года назад +2

    Where to do code ?

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      You have to download arduino ide in your pc and then paste the codes in it and upload it

  • @kaustubhpandey97
    @kaustubhpandey97 3 года назад +2

    not working is the wiring or the code wrong???

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +1

      @Kaustubh Pandey , just recheck the updated codes and it will work

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      @ARNAV SINGH
      #include //servo library
      Servo sg90;
      int echo = 7;
      int trig = 6;
      int servopin = 8;
      int distance;
      int duration;
      void setup() {
      sg90.attach(8);
      pinMode(trig, OUTPUT);
      pinMode(echo, INPUT);

      }
      void loop() {
      digitalWrite(trig,0);
      delay(2);
      digitalWrite(trig,1);
      delayMicroseconds(10);
      digitalWrite(trig,0);
      duration = pulseIn(echo,1);
      distance = duration*0.034/2;

      if ( distance

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      @ARNAV SINGH they are also in video description

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +3

      @ARNAV SINGH
      your welcome :)
      dont forget to share my channel

  • @ajayavelinositon5854
    @ajayavelinositon5854 Год назад +1

    Why its not working on my arduino😭 it doesnt move

    • @Flaretech.in_
      @Flaretech.in_  Год назад

      Check the connections and circuit diagram again

    • @ajayavelinositon5854
      @ajayavelinositon5854 Год назад +1

      ​@@Flaretech.in_ yes it works but when I use the 9v battery it malfunctioning it moves its own and the sensor is not working when I use the 9v but when I use the laptop cord it works properly

    • @Flaretech.in_
      @Flaretech.in_  Год назад

      Replace the battery

  • @kurtadam1617
    @kurtadam1617 3 года назад +1

    Can you give the codes man?, for my project purposes,, hope you notice my comment,, godbless

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      codes are in the description
      do you want me to give you here?

    • @kurtadam1617
      @kurtadam1617 3 года назад +1

      Thank u very much man,,

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +1

      #include //servo library
      Servo sg90;
      int echo = 7;
      int trig = 6;
      int servopin = 8;
      int distance;
      int duration;
      void setup() {
      sg90.attach(8);
      pinMode(trig, OUTPUT);
      pinMode(echo, INPUT);

      }
      void loop() {
      digitalWrite(trig,0);
      delay(2);
      digitalWrite(trig,1);
      delayMicroseconds(10);
      digitalWrite(trig,0);
      duration = pulseIn(echo,1);
      distance = duration*0.034/2;

      if ( distance

    • @Flaretech.in_
      @Flaretech.in_  3 года назад

      @@kurtadam1617 Is the project working?

  • @madhulatha4796
    @madhulatha4796 3 года назад +3

    Bro i think circuit diagram wrong

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +1

      i just checked it a few days ago , i will still check again just let me know where do you find problem'

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +1

      where do you think the problem is? i tried it and it worked

  • @jazlanjubri9377
    @jazlanjubri9377 Год назад

    How to make the servo spin just 90 degree please respond to me so fast 😭😭 the due date is just around the corner

    • @jazlanjubri9377
      @jazlanjubri9377 Год назад

      Ah sokay la dude I found the way 😎

    • @seot6810
      @seot6810 8 месяцев назад

      ​@@jazlanjubri9377hello can I get the solution?

  • @Jannat_Rocks
    @Jannat_Rocks Год назад +2

    Hi i am an beginner AND theres some problem with the code this is the error message. /Users/wahajkhan/Downloads/Ultrasonic_Led/Ultrasonic_Led.ino: In function 'void loop()':
    /Users/wahajkhan/Downloads/Ultrasonic_Led/Ultrasonic_Led.ino:36:3: error: expected ')' before 'delay'
    delay(2);
    ^~~~~
    error: 'High' was not declared in this scope
    digitalWrite(buzz,High);
    ^~~~
    note: suggested alternative: 'sinh'
    digitalWrite(buzz,High);
    ^~~~
    sinh
    Multiple libraries were found for "Servo.h"
    Compilation error: expected ')' before 'delay'

    • @Flaretech.in_
      @Flaretech.in_  Год назад

      Copy the code from description again and paste it in a new sketch

  • @deepashakya655
    @deepashakya655 3 года назад +1

    Sir humara sensor work hi nahi kar rha h

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      Connections check karo

    • @deepashakya655
      @deepashakya655 3 года назад +1

      @@Flaretech.in_ sir ho gya mera dustbin complete and it works properly tgank you sir

    • @deepashakya655
      @deepashakya655 3 года назад +1

      Thank you very much

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      @@deepashakya655 Wow! Thats great, congratulations
      Dont forget to share with your friends ❤

    • @deepashakya655
      @deepashakya655 2 года назад +1

      @ARNAV SINGH humne jo smart dustbin bnaya tha usme 3 volt supply nahi ho rha tha arduino ka pin thoda sa disturb tha

  • @W1iwiw
    @W1iwiw 3 года назад +1

    Sir kitna money lagaga

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +2

      Servo- 150
      Ultrasonic Sensor- 150
      Arduino Uno - 350
      Wires- 50
      Total - 800

  • @AliExpreescheapgoods2006
    @AliExpreescheapgoods2006 2 года назад +1

    You can havae give me samrt dasbin code

    • @Flaretech.in_
      @Flaretech.in_  2 года назад +1

      #include //servo library
      Servo sg90;
      int echo = 7;
      int trig = 6;
      int servopin = 8;
      int distance;
      int duration;
      void setup() {
      sg90.attach(8);
      pinMode(trig, OUTPUT);
      pinMode(echo, INPUT);
      }
      void loop() {
      digitalWrite(trig,0);
      delay(2);
      digitalWrite(trig,1);
      delayMicroseconds(10);
      digitalWrite(trig,0);
      duration = pulseIn(echo,1);
      distance = duration*0.034/2;
      if ( distance

  • @saireddy1149
    @saireddy1149 24 дня назад

    Hi

  • @jesh287
    @jesh287 3 года назад +2

    if you don't mind , can you send me a list of all the things that are used in this project // including the wires !! I'm just a beginner hehe sorry

    • @Flaretech.in_
      @Flaretech.in_  3 года назад +3

      Arduino Uno
      Servo motor
      Ultrasonic sensor
      9v battery
      Battery connector
      Female to make wires 10-15
      Male to male wires 10

    • @asemkhalid3849
      @asemkhalid3849 2 года назад +1

      @@Flaretech.in_ 10-15 cm or pcs

    • @Flaretech.in_
      @Flaretech.in_  2 года назад

      @@asemkhalid3849 10-15 pcs

    • @Irene.717
      @Irene.717 Год назад

      @@Flaretech.in_ What is female to make wires?

  • @abhilekhultimate0643
    @abhilekhultimate0643 8 месяцев назад

    Circuit diagram vul hai

  • @ShivaShankar-rj4rg
    @ShivaShankar-rj4rg 7 месяцев назад +1

    Not sensible project for the use in a dust bin. Electronics, power supply and the other adjustments.... No. Dust bin with a leg operated lid is enough and proper.

  • @sivangod2655
    @sivangod2655 10 месяцев назад

    Please reply me

  • @hareemnadeem1400
    @hareemnadeem1400 Год назад

    Worst presentation I've ever seen😂

    • @rijangiri4885
      @rijangiri4885 6 месяцев назад

      Yes it is worst for professionals Arduino programmes but for beginners it is precious for them ❤