Arduino ultrasonic sensor led projects | Hc-sr04 Ultrasonic sensor

Поделиться
HTML-код
  • Опубликовано: 28 янв 2025

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

  • @ugurertugrul6070
    @ugurertugrul6070 5 лет назад +35

    Thanks for video. But I have a question . How Can I do this project with use active buzzer? How should be the circuit diagram and code?

    • @MrElectroUino
      @MrElectroUino  5 лет назад +8

      if you want circuit diagram and code so send your Gmail id and do subscribe to my channel💖.

    • @shahrozKhan4u
      @shahrozKhan4u 5 лет назад

      Shahrozgandapur@gmail.com

    • @shahrozKhan4u
      @shahrozKhan4u 5 лет назад

      Send the code

    • @MrElectroUino
      @MrElectroUino  5 лет назад +3

      @@shahrozKhan4u Check your email i have sent the code and circuit.

    • @dikasaputra4548
      @dikasaputra4548 5 лет назад +2

      dikawirasaputra@gmail.com :) please gift me code.

  • @elxr8335
    @elxr8335 3 года назад +5

    thank you so much for this video, Mr. ElectroUino! you're literally a lifesaver. now, I can use this as a guide for my upcoming Arduino project. thank you again and have a nice day!!

  • @MadhavGupta-y7l
    @MadhavGupta-y7l Месяц назад +2

    for those who dont know the code
    const int trig = 12;
    const int echo = 13;
    int duration = 0;
    int distance = 0;
    void setup()
    {
    pinMode(trig , OUTPUT);
    pinMode(echo , INPUT);

    Serial.begin(9600);
    }
    void loop()
    {
    digitalWrite(trig , HIGH);
    delayMicroseconds(1000);
    digitalWrite(trig , LOW);
    duration = pulseIn(echo , HIGH);
    distance = (duration/2) / 29.1 ;
    Serial.println(distance);
    }

  • @NGCgalaxy
    @NGCgalaxy 4 года назад +4

    thank you!
    I found out that taking the absolute value of the "duration" making it works much better. for some reason negative values pop out randomly in my setup

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Excellent!

    • @maishasfishingzone634
      @maishasfishingzone634 4 года назад

      @@MrElectroUino Mr ElectroUino Can you Send me The code and diagram please? . I need the code urgently

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

    Thank you so much

  • @Sniper9401
    @Sniper9401 4 года назад +4

    Amazing video, highly recommend, well explained and works perfectly. Thanks a lot

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Thanks for watching 😊😊💖💙

  • @yasirsurucu3387
    @yasirsurucu3387 Месяц назад

    thank you sir you saved my life sir my project is super otherwise proffesor will angry at me sir appreciate it

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

    please I need your help !
    What if you want to make it with one Led that works when you place your hand in front of it at what distance(without distance measure)? how is the circuit and codes? And do I need a relay module? knowing that it takes its energy from a solar cell not a battery.

  • @zogamthangboi
    @zogamthangboi 4 года назад +3

    duration = pulseIn(echo , HIGH);
    distance = (duration/2) / 28.5 ;
    Serial.println(distance);
    Hi Sir. Above code are taken from your arduino program. May i know what is 28.5 means? Thanks.

    • @MrElectroUino
      @MrElectroUino  4 года назад +1

      Visit my website for detail code explanation and don't forget to subscribe to my channel✔💙. Link👇
      mrelectrouino.blogspot.com/2020/07/arduino-ultrasonic-sensor-with-leds.html?m=1

    • @RajKairi-j7m
      @RajKairi-j7m 7 месяцев назад

      J

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

    you're the kind of teacher that I want which always come to the point without wasting our time 🥰 thankyou for this video

  • @supriyadi.eve18
    @supriyadi.eve18 11 месяцев назад

    Is it possible if you don't use a breadboard, but use a decoder? and the lights use a 10 segment graph LED bar ?

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

    Very good tutorial and project! I was able to follow your directions and got it to work properly. I was trying to add a function where the LED would turn off after 30 seconds of no movement and then reset/loop back but having trouble. I can get the LED to turn off after no movement for 30 seconds but I can't turn it back on when the sensor detects movement. I would appreciate any feedback.

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

      Glad it helped!, can you contact me on Instagram: _mr_electrouino

  • @sirvix9024
    @sirvix9024 4 года назад

    BROOOO THANK UUU SOOO MUCHH i was trying 2 do this but it never worked cuz the coding was wrong and the ppl on utube, ur the 1st person to make me get successful with this, i nearly threw away this perfectly good sensor cuz i never got it 2 work

    • @MrElectroUino
      @MrElectroUino  4 года назад +1

      Glad I could help

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

      my code is not uploading the same code i have used

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

      @@saminaalam2416 really?

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

      Yes kindly help

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

      @@saminaalam2416 im a bit unsure since a year ago ive been programming with arduino and now i havent done much with it

  • @LouisNg-ty7iy
    @LouisNg-ty7iy Год назад +2

    Nice Video! if let's say I want to add on the Active buzzer, can you show me the circuit diagram and code?

  • @arpanajain2787
    @arpanajain2787 4 года назад +2

    awesome man!!!!!!!!
    very good idea

  • @jomfawad9255
    @jomfawad9255 7 месяцев назад

    does it work outdoor if theres sunlight?

  • @kalpana8395
    @kalpana8395 16 дней назад

    Can you add buzzer and lcd on it

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

    Hi, I’m not sure if you are still looking at the comment but I’m doing a project like this but making it work with a dmx light.
    The ultrasonic sensor was not powerful enough to detect someone from a range so I’m going to be using a vl530x. I’m wondering how I can do the same project able to control the light power depending on distance with the vl530x

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

      Hii, Yes you can do this project with this module. There is library for this sensor you need to use for do this project.

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

      @@MrElectroUino hi I got to making the sensor work on its own now I’m just trying to figure out how to make the dmx shield and the vl530x work together. If

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

      @@Fahimbkt sorry but I don't know much about dmx shield.

  • @howidamostafa8789
    @howidamostafa8789 4 года назад +1

    when i do the first part without led the distance = 0 why ?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      I think your ultrasonic sensor is not working.

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

    Can you give the code for per distance 30 cm... please...means the led will glow after every 30 cm

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

      For that just set the if statement to distance > 30.

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

      @@MrElectroUino you mean if ( distance

  • @prov8570
    @prov8570 4 года назад +1

    You deserve a like my guy

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Thanks man💖💙 and don't forget to subscribe to my channel✔.

  • @maplexd2829
    @maplexd2829 3 года назад

    2:14 I have an error shows "duration" was not declared in this scope. May I know what's the problem?

  • @Preethi-yn6vy
    @Preethi-yn6vy 2 месяца назад

    Will it sense only mobile phone or anything that comes closer

    • @MrElectroUino
      @MrElectroUino  2 месяца назад

      Its worked with other things as well

  • @SHARWINXAVIERRIT
    @SHARWINXAVIERRIT 4 года назад +1

    can we do the same without resistors?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Yes, you can do that, but the resistor is used for protecting the LEDs. Without a resistor, the LED draws too much current and burns out. You can easily found a resistor in some old electronics components but make sure the values and don't forget to subscribe to my channel✔💙

  • @prov8570
    @prov8570 4 года назад

    i have a doubt what is the range 9600 is that mean the range of the serial monitor
    that can tally?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Yes it's use for serial monitor to communicate with arduino uno.

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

    Can you tell me the abstract and future enhancement of 2nd project?

  • @cyphrsphyr
    @cyphrsphyr 4 года назад

    Sweet...first if/else statement project complete! Thanks

    • @MrElectroUino
      @MrElectroUino  4 года назад +1

      Thanks for watching 💙💙
      & don't forget to subscribe👍👍

  • @lilchocolate.gurl2023
    @lilchocolate.gurl2023 Год назад

    If we want a buzzer also to buzz and a single light will only glow , then what will be the circute diagram and the code ?

  • @antonolivermendez5000
    @antonolivermendez5000 5 лет назад

    the 2nd one with leds are coded using hard coding, right? is it possible to code the same program using arrays, if statements and for loops?

    • @MrElectroUino
      @MrElectroUino  5 лет назад +1

      Yaa it's possible with this...

    • @antonolivermendez5000
      @antonolivermendez5000 5 лет назад

      @@MrElectroUino may i have insight to how that way of coding works. i tried but got confused halfway through the code, Thank you!

  • @muhammadzaid532
    @muhammadzaid532 4 года назад +1

    what if we dont use resistors? cz i dont have resistors

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Hey there, Resistor is use for protecting the leds.Without resistor the LED draws too much current and burns out. You can easy found a resistor in some old electronics component but make sure the values.

  • @MrDestinyproduction
    @MrDestinyproduction 2 месяца назад

    Hi
    I have a question, please can i know how to do this project but with soldering machine

    • @MrElectroUino
      @MrElectroUino  2 месяца назад

      @@MrDestinyproduction yes you can do it, contact me on instagram

  • @tyreehornbeck2852
    @tyreehornbeck2852 4 года назад

    Is there a reason why , when I change the power source from the blue wire to the 9v battery it no longer functions like it's supposed to ? It only glows

    • @MrElectroUino
      @MrElectroUino  4 года назад

      It depends on how would you connect 9v battery to Arduino.🔌

  • @livinsebi3692
    @livinsebi3692 3 года назад

    Sir i have a doubt
    Can i use arduino nano instead of uno??
    Isn't both same???
    Does this same code works on nano also???

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

      Yes it will work same for arduino nano.

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

    Too good but the problem is the last part of your code for leds passes quickly moreover "upload the code" those words causes obstruction i can see clearly. Where can i get clean code?

    • @SomethingIdk-rp9ew
      @SomethingIdk-rp9ew 10 месяцев назад

      yyeeesss thank uuuuu

    • @SomethingIdk-rp9ew
      @SomethingIdk-rp9ew 10 месяцев назад

      FOUND IT

    • @SomethingIdk-rp9ew
      @SomethingIdk-rp9ew 10 месяцев назад +1

      const int trig = 12;
      const int echo = 13;
      const int LED1 = 8;
      const int LED2 = 7;
      const int LED3 = 6;
      const int LED4 = 5;
      const int LED5 = 4;
      const int LED6 = 3;
      const int LED7 = 2;
      int duration = 0;
      int distance = 0;
      void setup()
      {
      pinMode(trig , OUTPUT);
      pinMode(echo , INPUT);

      pinMode(LED1 , OUTPUT);
      pinMode(LED2 , OUTPUT);
      pinMode(LED3 , OUTPUT);
      pinMode(LED4 , OUTPUT);
      pinMode(LED5 , OUTPUT);
      pinMode(LED6 , OUTPUT);
      pinMode(LED7 , OUTPUT);

      Serial.begin(9600);
      }
      void loop()
      {
      digitalWrite(trig , HIGH);
      delayMicroseconds(1000);
      digitalWrite(trig , LOW);
      duration = pulseIn(echo , HIGH);
      distance = (duration/2) / 28.5 ;
      Serial.println(distance);

      if ( distance

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

      Nice

  • @Milanus1s
    @Milanus1s 7 месяцев назад +1

    thank you very much everything is great

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

    Thank you so much this really helped ❤️

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

    What letter is after print

  • @AvighnaDaruka
    @AvighnaDaruka 3 года назад

    bro please help it isnt working for me, only 5 LEDS are working and its just stationary it isnt blinking. It is just on and not moving

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

      Contact me on instagram: _mr_electrouino

  • @ΚλεάνθηςΛαζανάς
    @ΚλεάνθηςΛαζανάς 2 года назад

    how could i reeplace the leds with a 7 segment display?

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

      Hello 👋
      If you want to connect the lcd then check out my website. I already made a tutorial on it.

  • @rajdeep.saha_
    @rajdeep.saha_ 3 года назад

    in my serial monitor only "0" i bing diplayed repeatedly. What to do?

    • @MrElectroUino
      @MrElectroUino  3 года назад

      Maybe your sensor is broken or you did some thing wrong.
      Check your circuit again.

  • @MegaYuas
    @MegaYuas 4 года назад

    thanks sir
    this is the first project which code is in working condition.

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Ohh thanks💖💖
      Do subscribe😊😊

  • @NenesHusbandNo
    @NenesHusbandNo 11 месяцев назад

    Hellooo, I hope you'll notice this comment. I was wondering why my components are blinking when I copied your code, but in the video it isn't. Have I done something wrong? Your reply would be greatly appreciated ^-^

    • @MrElectroUino
      @MrElectroUino  11 месяцев назад

      Can you send the serial monitor, I think your sensor might not work. I need more information to point out the issue.
      Contact me on instagram _mr_electrouino

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

    Why when it come to hardware, my led become dim?

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

    Hi, loved your work
    Am trying it but My led won't stop blinking. It's blinking every second it takes reading.
    Apparent from that its working fine
    Can you please help.

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

    I also want to add that LCD distance showing screen with this LED light structure can u help me with that

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

      I already written a blog on this topic. So check out my website for code.

  • @m.malakondaiahyadav7227
    @m.malakondaiahyadav7227 Год назад +1

    How to upload the code

    • @SomethingIdk-rp9ew
      @SomethingIdk-rp9ew 10 месяцев назад

      or a better qestion where is the code

    • @SomethingIdk-rp9ew
      @SomethingIdk-rp9ew 10 месяцев назад

      NEVER MIND FOUND IT

    • @SomethingIdk-rp9ew
      @SomethingIdk-rp9ew 10 месяцев назад

      const int trig = 12;
      const int echo = 13;
      const int LED1 = 8;
      const int LED2 = 7;
      const int LED3 = 6;
      const int LED4 = 5;
      const int LED5 = 4;
      const int LED6 = 3;
      const int LED7 = 2;
      int duration = 0;
      int distance = 0;
      void setup()
      {
      pinMode(trig , OUTPUT);
      pinMode(echo , INPUT);

      pinMode(LED1 , OUTPUT);
      pinMode(LED2 , OUTPUT);
      pinMode(LED3 , OUTPUT);
      pinMode(LED4 , OUTPUT);
      pinMode(LED5 , OUTPUT);
      pinMode(LED6 , OUTPUT);
      pinMode(LED7 , OUTPUT);

      Serial.begin(9600);
      }
      void loop()
      {
      digitalWrite(trig , HIGH);
      delayMicroseconds(1000);
      digitalWrite(trig , LOW);
      duration = pulseIn(echo , HIGH);
      distance = (duration/2) / 28.5 ;
      Serial.println(distance);

      if ( distance

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

    bro i want all the code please

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

      Please check description for code link

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

      Thank you bro@@MrElectroUino

  • @hammadkhan2926
    @hammadkhan2926 3 года назад

    Should I do coding first on arduino? or make the complete circuit then do coding on arduino

    • @MrElectroUino
      @MrElectroUino  3 года назад

      Make the circuit and upload the code.

  • @AGMixArnavGupta
    @AGMixArnavGupta 4 года назад +1

    Very Good...
    👌👌👌👌

  • @littleengineer8496
    @littleengineer8496 4 года назад +1

    Can we use led bulb instead of Buzer❔❓❔

    • @MrElectroUino
      @MrElectroUino  4 года назад +1

      Yes You can, but you have to add a relay for the bulb.

    • @littleengineer8496
      @littleengineer8496 4 года назад +1

      @@MrElectroUino ok thanks 😎👍🏻

    • @littleengineer8496
      @littleengineer8496 4 года назад +1

      @@MrElectroUino I am making this using home made cirkut can I use 3 led bulbs

    • @littleengineer8496
      @littleengineer8496 4 года назад +1

      @@MrElectroUino relay means the base you used❔❓❔

    • @MrElectroUino
      @MrElectroUino  4 года назад +1

      @@littleengineer8496 Relay is a electrical switch. It's use for high current appliances.
      arduino only supply 5v, So we can use a relay to switch between 230v bulb AC.

  • @yogeshagre2761
    @yogeshagre2761 3 года назад

    Really thank you so much
    you saved my life

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

    What is the resistance of the resistors?

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

    Can you give me the code for using and OLED i2c Display to show distance with this project, It will be very helpful.
    Great Video Anyways!!

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

    Thank you it was truly very fun to make and helps learn coding arduino

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

      Glad you liked it!

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

      @@MrElectroUino I used this project's circuit set up to help me make another one I called "Traffic Lights". This really helped me make it = ).

  • @Apiphm
    @Apiphm 3 года назад

    Thank you sir you help me a lot

  • @calebterrill9014
    @calebterrill9014 3 года назад

    i keep getting zero for distance even though the wiring and coding is the same :( is my sensor broken???

    • @MrElectroUino
      @MrElectroUino  3 года назад

      Maybe your sensor is broken or you did some thing wrong.

  • @muhammadnajmi865
    @muhammadnajmi865 4 года назад

    I want to ask why you put it on 13 and 12 pin and not in analog pin

    • @MrElectroUino
      @MrElectroUino  4 года назад

      That's because the echo pin of HC-SR04 receives a pulse of very short duration,a pulse that has a value of 5v. Its not possible to get a pulse with analog pin.

  • @Danishis4fun
    @Danishis4fun 3 года назад

    Able to do with piezo buzzer?

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

      yes Its possible, if you want the code send me your Gmail address.

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

    good video thanks for you

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

    Great video! I would like to ask if I don’t have the male to male jumper wire can i use the general purpose wire?

  • @saffanhal-turki6522
    @saffanhal-turki6522 4 года назад

    Q: does the sensor works if pointed upwards ?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Yes its work but you have to change the sensor direction in upwards.

  • @amartechs9267
    @amartechs9267 3 года назад

    Can I use 480ohm resistor?

    • @MrElectroUino
      @MrElectroUino  3 года назад

      Yes, you can but the bright of the leds is low.

    • @amartechs9267
      @amartechs9267 3 года назад

      @@MrElectroUino Ok thanks

  • @kethukalyani7799
    @kethukalyani7799 3 года назад

    from where did you get com 6

    • @MrElectroUino
      @MrElectroUino  3 года назад

      On Arduino IDE Goto Tool -> port and select your COM port. By the way COM Port should be different for you.

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

    Nice info, thanks for sharing it :)

  • @Kirti_Mankar
    @Kirti_Mankar 5 лет назад +2

    Thanks for this video... 😀..

  • @Joshi_aarya
    @Joshi_aarya 3 года назад

    Hello if I want to do the same thing using RaspberryPi and in python programming give me suggestions!!

    • @MrElectroUino
      @MrElectroUino  3 года назад

      ruclips.net/video/L90WS-ptnvI/видео.html
      Visit this link for get the distance of an object after that use if loop for comparing the distance and turn on/off the led.

    • @Joshi_aarya
      @Joshi_aarya 3 года назад

      @@MrElectroUino can u just explain me the code!

    • @MrElectroUino
      @MrElectroUino  3 года назад

      @@Joshi_aarya How can i do that.
      visit this link for understand the code.
      pimylifeup.com/raspberry-pi-distance-sensor/

    • @Joshi_aarya
      @Joshi_aarya 3 года назад

      @@MrElectroUino explain means just write it down!! Btw now I got it thank you so much 👍

    • @MrElectroUino
      @MrElectroUino  3 года назад

      @@Joshi_aarya My pleasure : )

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

    Thank you ❤❤❤❤

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

    sir for me first 3 led are are not turn on

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

      Make sure that your connection is right.

  • @tanushreebiswas5141
    @tanushreebiswas5141 4 года назад

    I am doing the same thing with one led light, so when the sensor will find a object placed within less than 10 cm then it will turn on the light bt when i am connecting the circuit the led is glowing and when i am putting a object in front of the sensor the led is turned off why? But i have distance written "if(distance

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Could you send me your code So First I have to check it.

  • @wrientadiosa8495
    @wrientadiosa8495 Месяц назад

    can i also have the code with the 7 led attached already? i really need it

  • @justkamil8004
    @justkamil8004 4 года назад

    I just need it so when you go close up, It'll have a red light, and when the sensor senses nothing, it has a green light. Can you tell me how to do that, please?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Just set the distance for leds. when to off and on.

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

    Can you put it a lcd display to show the results on screen

  • @firhanrizani96
    @firhanrizani96 4 года назад

    why my serial monitor not showing the distance? it keep showing 0 value. i follow all your instructions and your coding but still not get it. even i try only the sensor.

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Check the circuit connection.

    • @firhanrizani96
      @firhanrizani96 4 года назад

      @@MrElectroUino i follow absolutely like yours. the simple circuit. not show the distance at my serial monitor.

  • @MuhammadIrfan-ez9ij
    @MuhammadIrfan-ez9ij 3 года назад +1

    Bro can i ask you I follow you copy you code but why still wrong?

    • @MrElectroUino
      @MrElectroUino  3 года назад

      Have you getting any error?
      you can contact me on instagram: _mr_electrouino

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

    Can we do this on esp8266

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

    sir how we get the code and circuit diagram in which one buzzer is also active;

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

      Check out my website. I have written a blog on it. There you will find code with circuit diagram

  • @pamuruchethan2903
    @pamuruchethan2903 4 года назад

    You are doing a lot of experiments well and you have to do lot of projects for everyone

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

    Can I get the full code to this project please, thanks!

  • @t-20-nikhilsanthosh70
    @t-20-nikhilsanthosh70 3 года назад

    Can i use 1k ohm resistor

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

      Yes you can but the brightness of LEDs is less.

  • @Shortgunss
    @Shortgunss 4 года назад

    only 1st two led is blinking.others are not evening lighting

  • @prempanchal7721
    @prempanchal7721 4 года назад

    the selected serial port _
    does not exist or your board is not connected
    ............. I got this error what will be the solution?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Just install the arduino driver. IF you getting any problem contact me on instagram _mr_electrouino_

    • @prempanchal7721
      @prempanchal7721 4 года назад

      @@MrElectroUino Please bro can you share a code coz in the last moment you swipe quickly so I can't see the code perfectly

    • @MrElectroUino
      @MrElectroUino  4 года назад

      @@prempanchal7721 check out the description you find a code link. Do subscribe😊

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

    Hi I am actually trying out this project but it ain’t working for me can u pls help😢

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

      Yea sure... You can contact me on Instagram _mr_electrouino

  • @terryroe2023
    @terryroe2023 5 лет назад

    What colour and size LEDs did you use? What was their voltage? How easy to add arduino speaker module into this project?

    • @MrElectroUino
      @MrElectroUino  5 лет назад

      5mm size and Round Red, Green, Blue, Yellow, White Color. It requires 2 to 3V dc power supply. For more information and buy visit this link: www.banggood.in/custlink/m3vD4vsnhu
      For the speaker connection, connect a positive terminal of speaker to Arduino pin 11 and negative terminal to Arduino pin ground(GND) and update the code and upload it. #subscribe it for more video......
      if you getting any problem you can also contact me on Instagram:
      instagram.com/_mr_electrouino_/?igshid=isb2pw365odq

    • @terryroe2023
      @terryroe2023 5 лет назад

      @@MrElectroUino I only asked as I am currently ordering the parts to build one. I am going to use it as an ITC device if I can.

    • @MrElectroUino
      @MrElectroUino  5 лет назад +1

      Okk
      First tell me what is the meaning of ITC device

    • @terryroe2023
      @terryroe2023 5 лет назад

      @@MrElectroUino its a device that can interact with spirits. I chase EVP, Electronic Voice Phenomenon, ITC is Instrumental Trans-Communication. I recently built a Rem Pod too.

    • @MrElectroUino
      @MrElectroUino  5 лет назад

      Watch this video:-
      ruclips.net/video/setjiVH0_IY/видео.html

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

    is there any way to do this without a breadboard? we wanna make a tree with leds attatched to it

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

      Use copper wire to build this project.

  • @tendilvignesh1508
    @tendilvignesh1508 4 года назад

    Can I change tha digital pin for tha led

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Yes you can but you have to define the pin in code to.
      DON'T FORGET TO SUBSCRIBE 💙💖

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

    Hi Will This Work With 100 Ohm Resistors?

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

      Yes It will work but it can be damage the led if led is turn on for long time. So I suggest you to use high ohm resistor.

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

    the first 2 LED's arent turning on, pls help

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

      Make sure that the LED is connected right or it not damaged.

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

    Can I have the complete code sir

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

      Check the video description for code or visit mrelectrouino.com

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

    how I am find out its coding for upload in aurdino

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

      Check out the video description for code.

  • @Muszti1
    @Muszti1 3 года назад

    Can you send me a program to this Project because i cant swe what is on your screen?

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

      Thanks for watching.
      Code link is in video description.

  • @김주윤-n1t
    @김주윤-n1t 2 года назад

    mine colors echo as orange and does not work

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

      Have you checked the serial monitor for the output?

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

    What is the colour code for the resistors?

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

      It's a 220 ohm four band resistor. The color is RED, RED, BROWN, and GOLD.

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

      Thanks a lot

  • @DailyDeepFacts1_
    @DailyDeepFacts1_ 4 года назад

    I finished the code and uploaded but what app do you use to chck the sensor?
    the same as the coding app?

    • @MrElectroUino
      @MrElectroUino  4 года назад

      Same arduino IDE used to check the sensor value.
      For that Goto and click on serial monitor
      Don't forget to subscribe💖✌

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

    Really...it was helpful for me.....Please sir could u share the code....it's very urgent...Tomorrow is the last date for project submission

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

      Can you please check the video description for code link

  • @Berghiker
    @Berghiker 3 года назад

    Howcome it only senses from 1m and not 4m?

    • @MrElectroUino
      @MrElectroUino  3 года назад

      In hc-sr04 data sheet is showing 4m of sensor detection.

  • @MarcosGarcia-bn4lm
    @MarcosGarcia-bn4lm 4 года назад +1

    in the second arduino screen did you only add those commands shown in the video? very cool the project, thanks for upload it

  • @mihaighitun4409
    @mihaighitun4409 5 лет назад

    Hi .In ur code the distance is messured in cm?

  • @AjaySingh-cu6qx
    @AjaySingh-cu6qx 3 года назад

    can i get code and circuit including buzzer?

  • @nisietranding834
    @nisietranding834 4 года назад +1

    Hi Sir,I will make this project. code was working,led was was showing distances.but one problem,all led was blinking I will put obstacle opposite of senser led was not blink.what is the problem of blinking?

  • @Yash_Verma5
    @Yash_Verma5 3 года назад

    Best in whole RUclips i did it