Tinkercad Arduino Project: Door Buzzer Using Ultrasonic Sensor

Поділитися
Вставка
  • Опубліковано 7 лют 2025
  • This video provide the interfacing of Ultrasonic sensor with Arduino UNO to develop a Door Buzzer system using online virtual tool tinkercad.com
    www.tinkercad....
    For the source code please visit the link..
    github.com/Tec...
    Like, share, and subscribe to watch more videos on the related topic.
    Thanks.
    _______________________________________________________________________
    #TinkercadArduinoTutorialsDoorBuzzerUsingUltrasonicSensor
    #UltrasonicSensorinterfacingintinkercad
    #DoorBuzzerUsingUltrasonicSensor

КОМЕНТАРІ • 53

  • @mansiyadav7847
    @mansiyadav7847 3 роки тому +5

    I don't know why he is having 18k views he deserves millions of views on this video

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  3 роки тому

      Thanks a lot for such wonderful comment

    • @MahmudulHasan-mv8iu
      @MahmudulHasan-mv8iu 3 роки тому +1

      give me this code plzzzz bro

    • @mokshitgarg1036
      @mokshitgarg1036 2 роки тому +1

      // Door Alarm Using Arduino UNO and Ultrasonic Sensor
      // Code to be used in the Text sub-window of tinkercad.com circuit page
      int trigger_pin = 2;
      int echo_pin = 3;
      int buzzer_pin = 10;
      int time;
      int distance;
      void setup()
      {
      Serial.begin (9600);
      pinMode (trigger_pin, OUTPUT);
      pinMode (echo_pin, INPUT);
      pinMode (buzzer_pin, OUTPUT);
      }
      void loop()
      {
      digitalWrite (trigger_pin, HIGH);
      delayMicroseconds (10);
      digitalWrite (trigger_pin, LOW);
      time = pulseIn (echo_pin, HIGH);
      distance = (time * 0.034) / 2;
      if (distance

    • @adriennealbay1494
      @adriennealbay1494 2 роки тому

      @@mokshitgarg1036 thank you

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

    Plz Like, Subscribe and Comment to suggest to make different applications. Thanks

  • @prayasbanda1687
    @prayasbanda1687 5 місяців тому +1

    Thank you.. For making this and helping me..

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

    Thanks for useful information

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

    Wowww very good 😁😀😀😀😀

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

    It is working thank u so much

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

    Can you do it in a code block

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

    I want the buzzer to stop when the distance is greater than 20 cm for example,
    but it just keeps on,

  • @mrunalipatil7463
    @mrunalipatil7463 2 роки тому

    Thankyou so much sir it works 💕😭

  • @cringelord511
    @cringelord511 3 роки тому +5

    how is this code being implemented as a door buzzer?
    can u explain the logic behind using 10 as distance?

  • @voidfulunarxecularity8726
    @voidfulunarxecularity8726 3 роки тому

    thank you indian man

  • @adnanzain856
    @adnanzain856 4 роки тому

    Nice

  • @eedmjcet8182
    @eedmjcet8182 4 роки тому

    Nice working.

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

    Display the distance of the object located from the sensor on the LCD and warn with buzzer if the object is located less than 25cm from the sensor without breadboard. Can you help me to solve this sir?

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  3 роки тому

      You can download the code from the link given in the description. Modify the code and copy and paste in the text area and run. Thanks for the interest shown.. Plz do subscribe.

  • @roycelopez872
    @roycelopez872 3 роки тому

    When your system will have problems?

  • @mrunalipatil7463
    @mrunalipatil7463 2 роки тому

    But how to explain this in viva ?

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

    thank you for the coding but why it is not working?

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

      Thanks for the interest. Plz check the code what you ve made/copied.

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

    Sir description wala coding text mai simulate nhi ho rha hai

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

      Plzz reply sir

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  4 роки тому

      I hope it ll work. PLz make sure the pin connection to arduino from ultrasonic sensor are correctly configured in the code as well.

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

    where is the code

  • @comraza01
    @comraza01 2 роки тому

    I try this but buzzer not start beeping

    • @haeveen8255
      @haeveen8255 2 роки тому

      Your buzzer was the problem. Mine were working good.

  • @zztangle7889
    @zztangle7889 3 роки тому

    Can you do this project coding using block?

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

      you can create it easily, just add the block of ultrasonic sensor and do the necessary connection and simple coding.

  • @ayaanscratch581
    @ayaanscratch581 2 роки тому

    can i get the code
    ?

  • @yosangle
    @yosangle 4 роки тому

    Thanks for program 👍

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  4 роки тому

      Keep watching. Plz do subscribe for the kind support and motivation.

  • @vaishnavi_ch
    @vaishnavi_ch 4 роки тому

    can you please make coding using blocks

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  4 роки тому

      Thank you for the interest. plz watch other videos within this channel. there are 4 more videos using only block programming.

  • @ilmanyusri2202
    @ilmanyusri2202 4 роки тому

    hi, i cant paste the code in the tinkercad. Can you help me?

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  4 роки тому

      Thanks for the interest shown. You can not paste the code in Block+Text coding. But yes you can copy and paste after selecting the Text mode only. Plz do like, share, and subscribe.

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

    What is the difference between those two ultrasonic distance sensor?

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

      I ve not used the other one. I ll used it in my next video to check the difference. Plz do subscribe.

  • @MahmudulHasan-mv8iu
    @MahmudulHasan-mv8iu 3 роки тому

    give me this code plzzzz

  • @tanvirkabirrony4663
    @tanvirkabirrony4663 4 роки тому

    Give me this code

    • @TechnicalUpdate2020
      @TechnicalUpdate2020  4 роки тому

      Thanks for the interest shown. The ultrasonic code you can find easily online. You can just connect and test it. To make the experiment using the Text+block coding you can watch the latest video.
      ua-cam.com/video/SXAh4gliRE8/v-deo.html