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

Поділитися
Вставка
  • Опубліковано 26 жов 2024

КОМЕНТАРІ • 126

  • @DhanishS-gy3gn
    @DhanishS-gy3gn 6 місяців тому +3

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

  • @anaclaro635
    @anaclaro635 7 місяців тому

    Genial y muchas gracias por compartir el código.

  • @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

  • @naitikvideobavla702
    @naitikvideobavla702 7 місяців тому

    Thank you for project ❤🎉

  • @kamalanganisawmya-im5xe
    @kamalanganisawmya-im5xe 7 місяців тому

    This is very good thanks❤👍👍

  • @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

  • @NIGHTCORENEPAL
    @NIGHTCORENEPAL 8 місяців тому

    Battery in which pins can you please reply?

  • @kleiderventura9906
    @kleiderventura9906 Місяць тому

    gracias por la informacion brindada

  • @yatharthbhatt941
    @yatharthbhatt941 3 роки тому +2

    can we use anthere code for dustbin pl reple fast

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому +1

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

    • @yatharthbhatt941
      @yatharthbhatt941 3 роки тому +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_  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 роки тому +1

      @@yatharthbhatt941 tell me which error its showing?

  • @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 2 роки тому

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

  • @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_  3 роки тому +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_  3 роки тому +1

      @ARNAV SINGH they are also in video description

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому +3

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

  • @Radiocontrolboy
    @Radiocontrolboy Рік тому +1

    We can use the arduino nano board ?

  • @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

  • @bu_3lash235
    @bu_3lash235 Рік тому

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

  • @SrejalSingh-f1e
    @SrejalSingh-f1e 10 місяців тому

    Sir 9v battery is safe plz reply fast

  • @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

  • @ShoubhitM
    @ShoubhitM Місяць тому

    Servo not working after some time... causing sounds like "TEEEEEE" sir please help

  • @Vickysinha04
    @Vickysinha04 4 місяці тому +1

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

  • @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

  • @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

  • @HuaweiHuawei-vk1ks
    @HuaweiHuawei-vk1ks 3 роки тому +1

    Hello,can we make using arduino maker uno x board

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому

      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 3 роки тому +1

      @@Flaretech.in_ okey...thanks 😊

    • @HuaweiHuawei-vk1ks
      @HuaweiHuawei-vk1ks 3 роки тому +1

      @@Flaretech.in_ how to reset arduino board?

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому +1

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

  • @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

  • @glaucus6730
    @glaucus6730 4 роки тому +3

    FIRST 🎉

  • @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

  • @Satish-bhagat29
    @Satish-bhagat29 3 роки тому +1

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

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому +2

      #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 роки тому +1

      @Satish .bhagat copy and paste this code

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому +1

      Aapne pure code nhi copy kare hai yeh wale karlo

  • @kirtansewakunwarsingh6784
    @kirtansewakunwarsingh6784 4 роки тому +1

    Very good hardit... 👌

  • @gurneeshkaur8062
    @gurneeshkaur8062 4 роки тому +4

    Wow 😍😍😍

  • @johnmarklapenid8172
    @johnmarklapenid8172 11 місяців тому

    What is the wire called?

  • @RakeshElectronic-j4v
    @RakeshElectronic-j4v 2 місяці тому

    Smart dustbin me use Hui chijo ka naam btaiye

  • @ruchijadhav1279
    @ruchijadhav1279 2 місяці тому

    Can you list all the important components

  • @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

  • @sivangod2655
    @sivangod2655 Рік тому

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

    • @AsthaaDas
      @AsthaaDas 11 місяців тому

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

  • @SrejalSingh-f1e
    @SrejalSingh-f1e 10 місяців тому

    Thanku u so much sir ❤

  • @NasuhaAshar
    @NasuhaAshar Рік тому +2

    wowwwww

  • @AISMOOTHIEPH99
    @AISMOOTHIEPH99 Рік тому

    does servo motor really keeps spinning?

    • @ajemm29
      @ajemm29 4 місяці тому +1

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

  • @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 3 роки тому +1

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

  • @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!

  • @EldosShaidolla
    @EldosShaidolla 11 місяців тому

    Library??

  • @RakeshElectronic-j4v
    @RakeshElectronic-j4v 2 місяці тому

    Plats ka naam btaiye

  • @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

  • @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 Рік тому

      ​@@jazlanjubri9377hello can I get the solution?

  • @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 3 роки тому +1

      @@Flaretech.in_ 10-15 cm or pcs

    • @Flaretech.in_
      @Flaretech.in_  3 роки тому

      @@asemkhalid3849 10-15 pcs

    • @Irene.717
      @Irene.717 Рік тому

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

  • @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?

  • @AliExpreescheapgoods2006
    @AliExpreescheapgoods2006 3 роки тому +1

    You can havae give me samrt dasbin code

    • @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

  • @abhilekhultimate0643
    @abhilekhultimate0643 11 місяців тому

    Circuit diagram vul hai

  • @ShivaShankar-rj4rg
    @ShivaShankar-rj4rg 11 місяців тому

    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.

  • @shantanutighare8876
    @shantanutighare8876 3 місяці тому

    Not work

  • @RakeshElectronic-j4v
    @RakeshElectronic-j4v 2 місяці тому

    Harry

  • @NavvanuLeMacha
    @NavvanuLeMacha 4 місяці тому

    Hi

  • @jorbethmaximarvallejosasen3695
    @jorbethmaximarvallejosasen3695 4 місяці тому

    oe pon elcodigo bien pe >:v

  • @sivangod2655
    @sivangod2655 Рік тому

    Please reply me

  • @hareemnadeem1400
    @hareemnadeem1400 Рік тому

    Worst presentation I've ever seen😂

    • @rijangiri4885
      @rijangiri4885 10 місяців тому

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