Smart Shoe for the Blind || Extremely Useful Arduino Project

Поделиться
HTML-код
  • Опубликовано: 16 сен 2023
  • Hello Friends,
    In today's video, we will learn how to make a smart shoe that can help blind people in detecting obstacle in front of them and thus prevents them from hitting it. This is an extremely useful Arduino project. The obstacle detection is done by using HS RC 04 ultrasonic sensor. When the blind person reaches any obstacle, the ultrasonic sensor detects it and the buzzer goes on. The buzzer sounds the alarm as long as the shoe is near the obstacle.
    Link to Download Code:
    drive.google.com/file/d/1cxJ0...
    OR
    www.mediafire.com/file/og2igo...
    The links for purchasing the items are given below.
    1. Arduino uno board : amzn.eu/d/iH03OHj
    2. HC-SR04 Ultrasonic Sensor : amzn.eu/d/i5OkXM7
    3. 9V battery: amzn.eu/d/34SPqIR
    4. Connector for 9V battery : amzn.eu/d/gXdNQt6
    5. Jumper wires : amzn.eu/d/hQ1P7Mi
    6. Rocker Switch : amzn.eu/d/ei5nePL
    Please enjoy watching the video. Please share the video if you like it.
    🎵 Song: 'Markvard - Dreams' is under a creative commons license license.
    ruclips.net/channel/UC8zg...
    🎶 Music promoted by BreakingCopyright:
    • 🛀 Soothing & Chill Out...
    Please share, like the video and SUBSCRIBE to my channel for watching more interesting videos in future. Thank You...❤
    #arduinoproject
  • НаукаНаука

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

  • @omarel-ghezawi6466
    @omarel-ghezawi6466 9 месяцев назад +4

    Informative and practical. Very easy to follow and very neat. Very clear audio. Good job. Expecting more projects and thanks a lot.

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

      Thank you so much dear friiend. Words like these are the motivation for doing more such projects and sharing with everyone. Thanks a lot. 💓

  • @sarthakkolekar658
    @sarthakkolekar658 5 месяцев назад +2

    This project is very nice and helpful 😇👌

    • @Science_4U_
      @Science_4U_  5 месяцев назад +2

      Thank you dear friend❤️🙂

  • @VinKrishSolutions
    @VinKrishSolutions 9 месяцев назад +2

    Super😊👌

  • @guilermoordonez8207
    @guilermoordonez8207 9 месяцев назад +1

    Those ultrasonic sensors are very cheap, but they get damaged very easily, for instance, wenn you use them to determine the waterlevel in a container, the humidity in the container is enough to damage them

    • @Science_4U_
      @Science_4U_  9 месяцев назад +1

      That is true friend. This is only a simple project to demonstrate the idea. Actual version has to be definitely weather proof..🙂

  • @BKS931
    @BKS931 4 месяца назад +3

    Hello sir male to female jumper wire we need to seperate that 4 nos for sensor and 2 nos for buzzer and 1 for switch right

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Yes..that is correct..

  • @beyondusee8740
    @beyondusee8740 9 месяцев назад +1

    Sir the project is good but do we can add a voice assistant to detect the object

    • @Science_4U_
      @Science_4U_  9 месяцев назад +3

      Yes..it is possible..I also thought about that. We can add voice alerts using talkie.h library in arduino. But it is a more difficult process. So to make the project simple I used buzzer alarm only..

  • @s.vinaysunder8642
    @s.vinaysunder8642 7 месяцев назад +3

    Hello brother your project is working perfect..but it's buzzering when too close can you tell me how I can add more distance in the coding.. elaborately pls urgent bro!!? :(

    • @Science_4U_
      @Science_4U_  7 месяцев назад +2

      Hi friend..In the code there will be following command line at line No. 24
      if (distance < 15)
      This number 15 is the distance for trigerring the alarm when it detects an obstacle. You can increase this number 15 to increase the distance at which the buzzer sounds alarm..

    • @s.vinaysunder8642
      @s.vinaysunder8642 7 месяцев назад +1

      Thank you so much brother...Even after i succeeded on the functions of these i recommend your channel to my friends for the science exhibition

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

      @@s.vinaysunder8642 okay friend..thank you so much ...I will update channel with more projects...💓🙂

  • @ZenSekai_007
    @ZenSekai_007 7 месяцев назад +2

    Hey bro can u help me find the codes to put the wires in audino nano?

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

      Hi friend. The same code will work for arduino also. Just make sure you connect to the same pin number...

  • @Sotan2
    @Sotan2 7 дней назад +1

    1. Can you give me the code for the whole function again to add voice instead of buzzer?
    2. And if I want to add voice, what separate instruments do I need and what kind of speakers would be good for speakers?
    Please reply soon, I have to submit it in my college for project after 2 days🙏😢

    • @Science_4U_
      @Science_4U_  6 дней назад

      Hi friend. I have made a separate video on voice using arduino. You can combine that code and this code which will give voice alerts. You can use any small toy speaker for this.

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

    Sir can we replace piezo in place of buzzer alarm

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

      No friend. We cannot use. The buzzer that I have used just need a DC command voltage to work. So a constant 5V DC signal from arduino is sufficient for it to work.
      But in the piezo buzzer, a signal with a frequency (PWM) is required for sounding the alarm. So in the code you have to use the following command
      tone(pin No., 1000) where pin no is the pin to which the buzzer is connected and 1000 is the frequency of the signal.

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

    Sir our ultra sonic sensor detecting long objects also and the buzzer is continuously working . What should we do ?

    • @Science_4U_
      @Science_4U_  7 месяцев назад +4

      Hello friend..Most probably, it could be a problem with the ultrasonic sensor. If possible please change that and see if the problem is solved.
      Before that you can try this. In the code there will be following command line at line No. 24
      if (distance < 15)
      This number 15 is the distance for trigerring the alarm when it detects an obstacle. You can increase this number 15 to increase the distance at which the buzzer sounds alarm..

  • @s.vinaysunder8642
    @s.vinaysunder8642 8 месяцев назад +1

    hey dude can you tell me what are the types of jumper wires you used(its urgent pls) :(

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

      Hi friend. You need only the following jumper wires
      Female to male jumper wires ..4 Nos. For ultrasonic sensor & 2 nos. For buzzer

    • @Science_4U_
      @Science_4U_  8 месяцев назад +1

      Hi friend. You need only the following jumper wires..
      Female to male jumper wires ..4 Nos. For ultrasonic sensor & 2 nos. For buzzer

  • @ray-zeze
    @ray-zeze 5 месяцев назад +1

    With what i can replace the switch? Any ideas where I can find one at my home?

    • @Science_4U_
      @Science_4U_  5 месяцев назад +2

      Hi friend, you can get similar switch from old toys. It can be a rocker switch, push button switch, slider switch or anything.

    • @ray-zeze
      @ray-zeze 5 месяцев назад

      Awsome, any chance that you can help me to transmit the noise in some bluethooth headphones, that would be grate and on another level. But I don t know how to do it@@Science_4U_

  • @HideFace-1
    @HideFace-1 4 месяца назад +2

    Coding link is not open

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Hi dear friend. I have given 2 links in the description box, for downloading the code. The links are given here below also. Did you try both the links?
      drive.google.com/file/d/1cxJ0GyNQziFMkOYpcc-02yDh7WrE-L-C/view?usp=sharing
      OR
      www.mediafire.com/file/og2igo1jef9u9yj/Smart_Shoe_for_the_Blind.ino/file

  • @tusharp_panwar
    @tusharp_panwar 5 месяцев назад +1

    Sir where is the link tor speaket? Plz help I have to submit the project next week

    • @Science_4U_
      @Science_4U_  5 месяцев назад +1

      Hi friend. In this project, speaker is not given. Only buzzer alarm is there..

  • @Lionel_Andres_Messi373
    @Lionel_Andres_Messi373 8 месяцев назад +2

    I have a question ❓❓ till when will the battery work ?

    • @Science_4U_
      @Science_4U_  8 месяцев назад +2

      Hi friend, It will work for many hours. Since there is only a buzzer, ultrasonic sensor and arduino uno, there will not be much power consumption. I think the battery should easily last a full day, working continously. If that is not sufficient, you can use a higher capacity battery.

  • @user-ty8qk1qg1c
    @user-ty8qk1qg1c 4 месяца назад +1

    My buzzer is continuiously working when i attach it with battery

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      That is most likely because your ultrasonic sensor is faulty. It is always wrongly detecting obstacle in front and the buzzer is continously ON. Replacing with a good ultrasonic sensor should solve the problem.

  • @Monster_mided
    @Monster_mided 8 месяцев назад +1

    Will it work with ardeno Nano

    • @Science_4U_
      @Science_4U_  8 месяцев назад +1

      Yes..sure friend..👍. Just make sure you give connections to the same pin numbers ..Then only the same code will work.

  • @mis0o.t522
    @mis0o.t522 4 месяца назад +1

    Hello brother, should the buzzer be passive or active? And can I use a 5v buzzer or it depends on the battery?

    • @Science_4U_
      @Science_4U_  4 месяца назад +2

      Hi friend. It has to be a passive buzzer.You can use 5V buzzer since the arduino output is a regulated 5V, eventhough you may use a higer battery voltage for powering Arduino.

    • @mis0o.t522
      @mis0o.t522 4 месяца назад +1

      ​@Science_4U_ so it's fine to use a 5v buzzer on a 9v battery? Thanks for answering me really fast🫶🏼

    • @Science_4U_
      @Science_4U_  4 месяца назад +2

      @mis0o.t522 yes friend. It is perfectly fine..

    • @mis0o.t522
      @mis0o.t522 4 месяца назад +1

      @Science_4U_ Thank you so much

  • @BKS931
    @BKS931 4 месяца назад +2

    Only male to female wire right

    • @Science_4U_
      @Science_4U_  4 месяца назад +2

      Yes..all are male to female jumper wires only..

  • @hardmode6082
    @hardmode6082 3 месяца назад +1

    this is great but the "smart shoe" was already done by a kick starter who allegedly took the 250K from backers and dissapeared.
    Anyways good luck with these project, just a tip maybe dont use an alarm but a bibration function? so they dont have to make everybody else like panic hehe or maybe do a switch to turn it on and off? Because sadly some people just dont care if a blind person is walking so it may be even better. Who know a zapping device may be great too xD

    • @Science_4U_
      @Science_4U_  3 месяца назад +1

      Yes friend. Your suggestions are great!!!

  • @binauralbeats-relaxingmusi4336
    @binauralbeats-relaxingmusi4336 4 месяца назад +1

    Dusra switch use kr skte hai?

  • @darkslayer009
    @darkslayer009 4 месяца назад +2

    Hi sir i am a student of std 6th my school has hold a science exhibition for that reason i have selected your work i have a doubt in it i dont have that machine that you use to connect the wires. Request you will reply. 🙏

    • @darkslayer009
      @darkslayer009 4 месяца назад +1

      I dont have that kind of machines can you help for it?

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      @@darkslayer009 Hi friend. Are you talking about the soldering iron that I am using to connect wires to the switch?. That is not required friend. You can just insert wire through the hole in the switch terminals and twist it. Soldering is not required.

    • @darkslayer009
      @darkslayer009 4 месяца назад +1

      Ok Thanks sir

  • @s.vinaysunder8642
    @s.vinaysunder8642 7 месяцев назад +1

    heelo dude can you tell me how i can add a voice when the shoe is going to hit somewhere...like a blind person is walking and when there is a obstacle ahead them it shouts "danger ahead"

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

      Hi friend. An audio alert like a speech can be definitely done using a speaker. But there are some commands for converting speech to audio signal and sending to speaker using arduino.. There is a talkie.h library which has to be installed. Then you can use the folowing code for saying some standard words..
      #include "Talkie.h" #include "Vocab_US_Large.h" #include "Vocab_Special.h" Talkie voice;
      void setup()
      { }
      void loop()
      { voice.say(spPAUSE2); voice.say(sp2_THE); voice.say(sp2_TIME); voice.say(sp3_IS); voice.say(sp3_FIVE); voice.say(sp3_OCLOCK); }
      Youcan change the words as per your requirement..

  • @mdmazid7386
    @mdmazid7386 8 месяцев назад +3

    Sketch uses 1900 bytes (6%) of program storage space. Maximum is 30720 bytes.
    Global variables use 9 bytes (0%) of dynamic memory, leaving 2039 bytes for local variables. Maximum is 2048 bytes.
    avrdude: ser_open(): can't set com-state for "\\.\COM7"
    Failed uploading: uploading error: exit status 1 what is the meaning of this error and how to fix this error ?

    • @Science_4U_
      @Science_4U_  8 месяцев назад +3

      Hi friend. This error says can't set com state for \COM7 means it is not able to communicate to arduino uno through COM 7 port. You can unplug and plug the usb cable connecting arduino. Also after you connect, make sure to goto IDE software..tools..port..select the correct port with a tick mark. Then upload..

    • @mdmazid7386
      @mdmazid7386 8 месяцев назад +3

      Thank you for your reply
      The port is automatically selected and I've seen each and every port in the lappi but the same error is generating

    • @Science_4U_
      @Science_4U_  8 месяцев назад +2

      @@mdmazid7386 ooh..can you try with a different pc or laptop?

    • @mdmazid7386
      @mdmazid7386 8 месяцев назад +2

      @@Science_4U_ it shows same error in my frnds laptop too🥲
      Compiling is done but uploading is not working

    • @Science_4U_
      @Science_4U_  8 месяцев назад +2

      @@mdmazid7386 @mdmazid7386 ooh..Then it could be an fault in your arduino board. Have you succesfully uploaded code in this board anytime before?.
      Also you can try uninstalling the windows driver once and reinstall again. This also may solve the problem
      .

  • @shaheenajaleeli2712
    @shaheenajaleeli2712 8 месяцев назад +1

    sir i cant find the code
    pls type below here

    • @Science_4U_
      @Science_4U_  8 месяцев назад +1

      Hi friend..The link to download code is given in the description box. I am giving the link below also.
      drive.google.com/file/d/1cxJ0GyNQziFMkOYpcc-02yDh7WrE-L-C/view?usp=sharing

  • @user-xi5ns9wc3g
    @user-xi5ns9wc3g 4 месяца назад +1

    Bro in which software we have to enter that code ?

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Hi friend. There is an Arduino IDE (Integrated Development Environment) software that is available to download for free from internet. You have to install the software, open the code in the software, connect the arduino using USB cable and upload the code..

  • @criceditz0705
    @criceditz0705 5 месяцев назад +1

    Sir can you send us code for this ....

    • @Science_4U_
      @Science_4U_  5 месяцев назад +2

      Hi friend. For all my projects, the links to download the code will be given in the description box just below the video. I am giving the links to download code here also.
      Link to Download Code:
      drive.google.com/file/d/1cxJ0GyNQziFMkOYpcc-02yDh7WrE-L-C/view?usp=sharing
      OR
      www.mediafire.com/file/og2igo1jef9u9yj/Smart_Shoe_for_the_Blind.ino/file

  • @LegendGamer-hx5cd
    @LegendGamer-hx5cd 3 месяца назад +1

    Can we use Arduino nano instead!? Plz reply

    • @Science_4U_
      @Science_4U_  3 месяца назад +1

      Yes friend. Definitely.. Arduino nano can be used instead of uno. Code remains the same.

    • @LegendGamer-hx5cd
      @LegendGamer-hx5cd 3 месяца назад +1

      @@Science_4U_ sir can you then please send me the code for Arduino nano

    • @Science_4U_
      @Science_4U_  3 месяца назад +1

      @LegendGamer-hx5cd The code can be downloaded from the links given in description box below the video. I am giving the download links below also..
      Link to Download Code:
      drive.google.com/file/d/1cxJ0GyNQziFMkOYpcc-02yDh7WrE-L-C/view?usp=sharing
      OR
      www.mediafire.com/file/og2igo1jef9u9yj/Smart_Shoe_for_the_Blind.ino/file

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

    Bro can i buy this project

    • @Science_4U_
      @Science_4U_  7 месяцев назад +3

      I am sorry friend. I dont sell these projects. You can very easily purchase these components online and make it by yourself..

  • @kannakikumar8106
    @kannakikumar8106 8 месяцев назад +1

    Can you tell me how to add the code plz😅

    • @Science_4U_
      @Science_4U_  8 месяцев назад +2

      Hi friend. First we have to download the code from the link given in the description box below the video. Then, We have to connect the arduino board to PC or laptop using a USB cable. Then we have to open IDE software, which can be downloaded and installed from internet. Open the code from the IDE software and click the upload button. The code will then be uploaded to the arduino uno board..

  • @darkslayer009
    @darkslayer009 4 месяца назад +1

    How many metres jumper wire we need? And hpw much we need

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Jumper wires are not sold in metres. It is sold in numbers. Each jumper wire is around 15 centemetres in length and has pins on either end to plug to arduino and other sensors.

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      For this project you need 4 numbers of jumper wires, male to female ..for ultrasonic sensor ..2 numbers of male to female jumper wires for connecting buzzer..

    • @darkslayer009
      @darkslayer009 4 месяца назад +1

      ​@@Science_4U_ Near my house it is sold for 30 rs for 1m??

    • @darkslayer009
      @darkslayer009 4 месяца назад +1

      How much wires should I purchase?.

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      @darkslayer009 okay..but i dont kno2 whether it will have pins at both ends.. what I am talking about can be seen in the following link..
      Limited-time deal: ApTechDeals Jumper Wires Male to Male, Male to Female, Female to Female/breadboard jumper wires (40+40+40) amzn.eu/d/hUIjDU7

  • @bhuvanamj9758
    @bhuvanamj9758 3 месяца назад +1

    What is the distance it detects ?

    • @Science_4U_
      @Science_4U_  3 месяца назад +1

      Hi friend. Now, the distance that it detects is set to approximately 15 cm. This can be easily increased or decreased in the code.

    • @bhuvanamj9758
      @bhuvanamj9758 3 месяца назад +1

      Ok thank you

    • @bhuvanamj9758
      @bhuvanamj9758 3 месяца назад +1

      What are all the questions may ask in the exam about this project??

    • @Science_4U_
      @Science_4U_  3 месяца назад +1

      @bhuvanamj9758 Hmm.Questions could be..
      1. What is the working principle of this project.
      2. What are the components used in this project.
      3. What is the working principle of tge ultrasonic sensor.
      4. What are the limitations & improvements that can be done in this project.

    • @bhuvanamj9758
      @bhuvanamj9758 3 месяца назад +1

      @@Science_4U_ thank you sir

  • @banarasi_655
    @banarasi_655 6 месяцев назад +1

    Code download nhi ho rha ??

    • @Science_4U_
      @Science_4U_  6 месяцев назад +1

      Okay friend. I will paste the code here.. You can copy and use that.
      #define trigPin 9 // Trig Pin Of HC-SR04
      #define echoPin 8 // Echo Pin Of HC-SR04
      #define BUZ 13 //BUZZER
      long duration, distance;
      void setup()
      {
      pinMode(BUZ, OUTPUT);
      pinMode(trigPin, OUTPUT); // Set Trig Pin As O/P To Transmit Waves
      pinMode(echoPin, INPUT); //Set Echo Pin As I/P To Receive Reflected Waves
      }
      void loop()
      {
      Serial.begin(9600);
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH); // Transmit Waves For 10us
      delayMicroseconds(10);
      duration = pulseIn(echoPin, HIGH); // Receive Reflected Waves
      distance = duration / 58.2; // Get Distance
      Serial.println(distance);
      delay(10);
      if (distance < 15) // Condition For Absence Of Obstacle
      {
      // turn BUZZER ON & OFF 5 times:
      for (int i=0; i

  • @bhuvanamj9758
    @bhuvanamj9758 5 месяцев назад +1

    Hii sir I've done this project but only i can see the lights in the arduino uno but buzzer is not working what to do?

    • @Science_4U_
      @Science_4U_  5 месяцев назад +1

      Hi friend. Most likely the ultrasonic sensor is faulty and not detecting the obstacle in front. We have to check one by one to find out the exact problem. Have you used this ultrasonic sensor before or is it a new one?

    • @Science_4U_
      @Science_4U_  5 месяцев назад +1

      Whether only the power led light in arduino is seen or can you see a flashing led light when the hand is brought closer to the ultrasonic sensor?

    • @bhuvanamj9758
      @bhuvanamj9758 5 месяцев назад +1

      I can see the light when hand or any object in the front but buzzer is not working

    • @bhuvanamj9758
      @bhuvanamj9758 5 месяцев назад +1

      All the components are new one

    • @Science_4U_
      @Science_4U_  5 месяцев назад

      The light has to continously blink when you bring your hand near the ultrasonic sensor. The light should go off when you move your hand away from ultrasonic sensor. Is it happening like that?

  • @user-be8hj2sm8q
    @user-be8hj2sm8q 4 месяца назад +1

    Sir hame project ka report mil sakta he kaya

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Sorry dosth. Mere pass report nahi hain. Aap hi banna padega..

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

    Bro i cant download the file

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

      can't you download? or you can't open the file?

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

      Hi friend. The code can be downloaded from the google drive link given in the description box below the video. I have uploaded the code in mediafire also. Both the links are given below.
      drive.google.com/file/d/1cxJ0GyNQziFMkOYpcc-02yDh7WrE-L-C/view?usp=sharing
      OR
      www.mediafire.com/file/9p9wls7u2of3zwx/voice_controlled_robot.ino/file

  • @AyanAgha22
    @AyanAgha22 25 дней назад +1

    Sir, I need a program of blind shoe in pictoblox

    • @AyanAgha22
      @AyanAgha22 25 дней назад +1

      Sir please give me coding of blind shoe in pictoblox.

    • @AyanAgha22
      @AyanAgha22 25 дней назад +1

      Sir,
      I also tried to open a link that you give, but that link wasn't open. Please help me I want to show this project to my teacher

    • @Science_4U_
      @Science_4U_  25 дней назад +1

      Hi friend. I havent tried coding in pictoblox. But are you not able to download the arduino code from both the links that I have given in description box?

    • @AyanAgha22
      @AyanAgha22 24 дня назад +1

      Yes sir, I do not able to download the code

    • @AyanAgha22
      @AyanAgha22 24 дня назад +1

      Sir, can you tell me the platform name in which the code of arduino for blind shoes?

  • @user-xi5ns9wc3g
    @user-xi5ns9wc3g 4 месяца назад +1

    Bro code isn't opening in mobile after downloaded is there any another option?

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      In mobile you can use arduinodroid application to open and upload the code. In PC or laptop, you can use Arduino IDE software..

    • @binauralbeats-relaxingmusi4336
      @binauralbeats-relaxingmusi4336 4 месяца назад +1

      Bro I want to make real time object recognition with raspberry pie.
      Isme beep krne ke bajaya samne kya hau wo machine bolke ke btaye
      Yolo model use hoga.
      Lekin isse hardware ke through implement kaise krne pta ni.
      Explain me bro
      Urgent hai please

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      @binauralbeats-relaxingmusi4336 Hi friend. Mein raspberry pi nahi use kartha hai..toh isliye mere ko nahi pata hai..sorry friend..

    • @binauralbeats-relaxingmusi4336
      @binauralbeats-relaxingmusi4336 4 месяца назад +1

      @@Science_4U_ bhai.
      Mujhe Arduino sekhna hai aur sare sensor ka use. I want to learn full electronic kha se dekho .
      Share me resources and full Arduino course

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      @binauralbeats-relaxingmusi4336 Mere paas arduino ka study material nahi hai. Aap internet mein search karo aur pado..bahut jyada hai internet mein..

  • @notflameyt9272
    @notflameyt9272 8 месяцев назад +1

    Sir please give me the code.. sir the code in discription is not working please help sir

    • @Science_4U_
      @Science_4U_  8 месяцев назад +1

      Hi friend. The code will definitely work friend. I have already checked the working of the code. Can you clearly tell what is the problem?

    • @notflameyt9272
      @notflameyt9272 8 месяцев назад +1

      @@Science_4U_ the code in the discription is not opening.

    • @Science_4U_
      @Science_4U_  8 месяцев назад +1

      @@notflameyt9272 The code can be opened using IDE software. This software can be downloaded from internet. After connecting the arduino to laptop or PC, the code can be uploaded to arduino using IDE software..

    • @notflameyt9272
      @notflameyt9272 8 месяцев назад +1

      @@Science_4U_ ok sir thanks!

    • @notflameyt9272
      @notflameyt9272 8 месяцев назад +1

      @@Science_4U_ sir, will it work on Arduino nano?

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

    Sir can you reply me fast please because I have science fair in 2days what is the app used to type code pls say😢😢😢

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

      Hi friend. I am using IDE software which can be downloaded from internet. This software has to be first installed in laptop or PC. Then a usb cable has to be connected to the arduino and the PC or laptop. Open the IDE software and upload the code..

  • @binauralbeats-relaxingmusi4336
    @binauralbeats-relaxingmusi4336 4 месяца назад +1

    Bhai tinkercad pe rocker switch hai hi ni aisia kyun. Slide switch hai. Iske kaise connect kre.

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Kya aapko circuit diagram banna hai?.

    • @binauralbeats-relaxingmusi4336
      @binauralbeats-relaxingmusi4336 4 месяца назад +1

      @@Science_4U_ hannn

    • @binauralbeats-relaxingmusi4336
      @binauralbeats-relaxingmusi4336 4 месяца назад +1

      Buzzer Sara connect krke

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      @binauralbeats-relaxingmusi4336 okay.. You can make circuit diagram in Microsoft powerpoint. Just place the pictures of components and connect pins using lines..

    • @binauralbeats-relaxingmusi4336
      @binauralbeats-relaxingmusi4336 4 месяца назад +1

      @@Science_4U_ tinkercad me lekin simulations krne me shi rhta. Online code run bhi kra skte aur components ka working bhi dekh skte

  • @banarasi_655
    @banarasi_655 6 месяцев назад +1

    The code is not opening!!

    • @Science_4U_
      @Science_4U_  6 месяцев назад +1

      Hi friend. Can you tell are you not able to download or is it that the code is not opening in software?.

    • @banarasi_655
      @banarasi_655 6 месяцев назад +1

      @@Science_4U_ it's not downloading

    • @Science_4U_
      @Science_4U_  6 месяцев назад +1

      @@banarasi_655 okay friend. I have given a mediafire link also in the description box. Can you try downloading the code from the mediafire link?

    • @banarasi_655
      @banarasi_655 6 месяцев назад +1

      @@Science_4U_ likh rha the "site can't be open.....

    • @Science_4U_
      @Science_4U_  6 месяцев назад +2

      Okay friend..Don't worry. I will paste the code here.
      #define trigPin 9 // Trig Pin Of HC-SR04
      #define echoPin 8 // Echo Pin Of HC-SR04
      #define BUZ 13 //BUZZER
      long duration, distance;
      void setup()
      {
      pinMode(BUZ, OUTPUT);
      pinMode(trigPin, OUTPUT); // Set Trig Pin As O/P To Transmit Waves
      pinMode(echoPin, INPUT); //Set Echo Pin As I/P To Receive Reflected Waves
      }
      void loop()
      {
      Serial.begin(9600);
      digitalWrite(trigPin, LOW);
      delayMicroseconds(2);
      digitalWrite(trigPin, HIGH); // Transmit Waves For 10us
      delayMicroseconds(10);
      duration = pulseIn(echoPin, HIGH); // Receive Reflected Waves
      distance = duration / 58.2; // Get Distance
      Serial.println(distance);
      delay(10);
      if (distance < 15) // Condition For Absence Of Obstacle
      {
      // turn BUZZER ON & OFF 5 times:
      for (int i=0; i

  • @gauravgw2746
    @gauravgw2746 6 месяцев назад +1

    can a power bank be used

    • @Science_4U_
      @Science_4U_  6 месяцев назад +2

      Yes sure friend. It can be used.It can be connected to the USB port in arduino for powering it.

    • @gauravgw2746
      @gauravgw2746 6 месяцев назад +1

      @@Science_4U_ thanks I watched many videos but it was fake but this is real and working.

    • @Science_4U_
      @Science_4U_  6 месяцев назад +1

      @gauravgw2746 Thank yoj dear friend. All the projects that I upload are tested ones. I make them and upload them only if it works succesfully.

  • @babyswapnaswapna5817
    @babyswapnaswapna5817 9 месяцев назад +1

    ഉണ്ണികുണ്ടാൻ

    • @Science_4U_
      @Science_4U_  9 месяцев назад +1

      എന്താ ഉദ്ദേശിച്ചത്?. മനസ്സിലായില്ല.

    • @Snigdha.945
      @Snigdha.945 9 месяцев назад +1

      Oant achaneee annn

  • @user-xi5ns9wc3g
    @user-xi5ns9wc3g 4 месяца назад +1

    Bro in which software we have to enter that code ?

    • @Science_4U_
      @Science_4U_  4 месяца назад +1

      Hi friend. There is an Arduino IDE (Integrated Development Environment) software that is available to download for free from internet. You have to install the software, open the code in the software, connect the arduino using USB cable and upload the code..