3 Simple Arduino Projects for beginners

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ม.ค. 2020
  • Hello Friends, in this video i have shown 3 arduino projects for beginners which are easy to make and interesting. you can find detailed information about these projects by seeing the tutorials from the links below.
    Part Links (Global) :
    Arduino UNO : bit.ly/aRdUiNo
    HC-SR04 Ultrasonic sensor : bit.ly/35DZmxT
    (India):
    Arduino UNO : bit.ly/31I0FQf
    HC-SR04 Ultrasonic sensor : bit.ly/3HP7FMX
    Arduino Distance Meter: • Arduino Ultrasonic Sen...
    Arduino Door Lock : • Arduino RFID Door Lock...
    Water Temperature Sensor : • Measure Water Temperat...
    check my channel for more awesome content: / superbtech
    Gear i Use:
    Camera: amzn.to/3i8ZhJ3
    Tripod: amzn.to/2GnmXvN
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 88

  • @sallymatar4457
    @sallymatar4457 3 ปีที่แล้ว +27

    Keep the hard work up man... good content

  • @smashtastictech3584
    @smashtastictech3584 4 ปีที่แล้ว +12

    nice compilation

  • @rbtguru
    @rbtguru ปีที่แล้ว

    Nice video editing and project idea👍

  • @parsanazari2824
    @parsanazari2824 2 ปีที่แล้ว

    thanks man it's awsome u are perfect

  • @AH-mi9ws
    @AH-mi9ws ปีที่แล้ว +2

    In the third project , how did you connect all the connecting wires with the breadboard ??? Can you please explain

  • @topvideos6610
    @topvideos6610 2 ปีที่แล้ว +1

    Thank you for your video 👍

  • @DRAGONSLAYERR.
    @DRAGONSLAYERR. ปีที่แล้ว

    can you slow down when wiring? cuz i cant keep up and you dont say which wire is connected to what so plz explain it............

  • @frostfire4628
    @frostfire4628 2 ปีที่แล้ว

    yey dis epik for my robotic project

  • @christianchilese2470
    @christianchilese2470 3 ปีที่แล้ว +1

    Arduino:1.8.12 (Windows 10), Scheda:"Arduino Uno"
    Lo sketch usa 4364 byte (13%) dello spazio disponibile per i programmi. Il massimo è 32256 byte.
    Le variabili globali usano 250 byte (12%) di memoria dinamica, lasciando altri 1798 byte liberi per le variabili locali. Il massimo è 2048 byte.
    Errore durante il caricamento dello sketch
    Questo report potrebbe essere più ricco di informazioni abilitando l'opzione
    "Mostra un output dettagliato durante la compilazione"
    in "File -> Impostazioni"

  • @notadam4217
    @notadam4217 2 ปีที่แล้ว +24

    // defines pins numbers
    const int trigPin = 9;
    const int echoPin = 10;
    // defines variables
    long duration;
    int distance;
    void setup() {
    pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
    pinMode(echoPin, INPUT); // Sets the echoPin as an Input
    Serial.begin(9600); // Starts the serial communication
    }
    void loop() {
    // Clears the trigPin
    digitalWrite(trigPin, LOW);
    delayMicroseconds(2);
    // Sets the trigPin on HIGH state for 10 micro seconds
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(10);
    digitalWrite(trigPin, LOW);
    // Reads the echoPin, returns the sound wave travel time in microseconds
    duration = pulseIn(echoPin, HIGH);
    // Calculating the distance
    distance = duration * 0.034 / 2;
    // Prints the distance on the Serial Monitor
    Serial.print("Distance: ");
    Serial.println(distance);
    delay(10);
    }

    • @VFX.Kalyug
      @VFX.Kalyug 2 ปีที่แล้ว +1

      Thats jjst copied from website bruv

    • @brigganator17
      @brigganator17 2 ปีที่แล้ว +3

      @@VFX.Kalyug so is the code people use bruv

    • @dhyanpatel2234
      @dhyanpatel2234 4 หลายเดือนก่อน

      Unfortunately not working for me

  • @CyberBotX1812
    @CyberBotX1812 2 ปีที่แล้ว +1

    When I opened the code it is showing that "NO File Preview".

  • @jancarlostanghal3129
    @jancarlostanghal3129 3 ปีที่แล้ว +10

    hi. where can i see clearly the code for the 1st one? Thanks in advance

    • @SuperbTech
      @SuperbTech  2 ปีที่แล้ว +4

      all 3 projects have individual videos, their links are in this video description. you're welcome

  • @nadeem2646
    @nadeem2646 3 ปีที่แล้ว

    Pro projects

  • @akankshakandar8122
    @akankshakandar8122 ปีที่แล้ว

    Can anyone share the code for measure water temperature using Arduino..bcz I'm not able to open this link

  • @dayakararaot8913
    @dayakararaot8913 3 ปีที่แล้ว +14

    Thanks for the tutorials and giving me some ideas to make! Nice videos.

    • @SuperbTech
      @SuperbTech  3 ปีที่แล้ว +2

      Glad you like them!

    • @aboudyx
      @aboudyx 10 หลายเดือนก่อน

      ​@@SuperbTech what is MFRC5222

  • @komiku3966
    @komiku3966 3 ปีที่แล้ว

    What is the name of the cables that you use in the first project

  • @CyberBotX1812
    @CyberBotX1812 2 ปีที่แล้ว +2

    Everything is nice but can you give the code of these projects in the description as others do. I also like to make it that's why.

    • @SuperbTech
      @SuperbTech  2 ปีที่แล้ว +1

      In the description i have added links to the projects. Each project has a separate video in which i have explained everything in detail, also links for code and schematic are available in their description.

    • @CyberBotX1812
      @CyberBotX1812 2 ปีที่แล้ว

      @@SuperbTech Ok thanks. I couldn't find it that's why.

  • @arsenewavreille8159
    @arsenewavreille8159 3 ปีที่แล้ว +1

    i copy the code....
    it does'nt work...

  • @yevinliyanage1534
    @yevinliyanage1534 ปีที่แล้ว

    ur vid is good just can u show me where to put the wires ur self cause i just started and i cant complete any of them

    • @SuperbTech
      @SuperbTech  ปีที่แล้ว

      hi, i have made video on each of the 3 projects, the details are mentioned in the 3 videos. kindly check video description for the link for the individual videos

  • @larsnz4945
    @larsnz4945 3 ปีที่แล้ว +7

    for the second one, it would be nice if the lock can still be used manually because after putting the servo I do not think you will be able to lock the door from inside. I may be wrong tho

    • @generax-zu9jc
      @generax-zu9jc 3 ปีที่แล้ว

      😂😢😢

    • @17p.nithishixa29
      @17p.nithishixa29 6 หลายเดือนก่อน

      If we set a delay there, it will lock 🔒🔒 automatically.

  • @gbdsoundzchannel8069
    @gbdsoundzchannel8069 3 ปีที่แล้ว +32

    Please can you make the code for the first project bolder to see...

    • @ehabalwi5383
      @ehabalwi5383 ปีที่แล้ว

      Its in the description of the linked video

    • @ehabalwi5383
      @ehabalwi5383 ปีที่แล้ว +2

      Here you can download it from here drive.google.com/drive/u/0/mobile/folders/1hPxJmfQn4Raa4I4QeqMZkC0jZ1IaZfhD?usp=drive_open

  • @VivekKumar-uz1qe
    @VivekKumar-uz1qe 2 ปีที่แล้ว

    hi bro i need code for this project, first project == distance calculator.

  • @abhinraphael189
    @abhinraphael189 2 ปีที่แล้ว

    Will you give the link of code 🙏

  • @ondrejrejzek8459
    @ondrejrejzek8459 3 ปีที่แล้ว +1

    please make the download code in the caption

  • @mr.RAND5584
    @mr.RAND5584 2 ปีที่แล้ว +1

    I wish arduino can detect corona virus like a sniffing dog.

  • @baba_ktbi
    @baba_ktbi 3 ปีที่แล้ว +1

    Wow

  • @a3dam481
    @a3dam481 ปีที่แล้ว

    where is the code? for the lcd

  • @tomikplayer6719
    @tomikplayer6719 ปีที่แล้ว

    the first doesnt work from me

  • @dhyanpatel2234
    @dhyanpatel2234 4 หลายเดือนก่อน

    Hey, can you please give the code?

  • @shernillelicud2645
    @shernillelicud2645 3 ปีที่แล้ว +1

    About the 2nd project, what if it runs out of battery and you are outside? You won't be able to open the door anymore? Hehe

  • @khadijahnoor572
    @khadijahnoor572 3 ปีที่แล้ว +1

    the 2nd one will not work with heavy locks tho

  • @LNSBK
    @LNSBK 3 ปีที่แล้ว

    I need help. When ever I plug it in the light just dies off.

    • @LNSBK
      @LNSBK 3 ปีที่แล้ว

      @Arman Parashar I don't know where to add them?

    • @LNSBK
      @LNSBK 3 ปีที่แล้ว

      @Arman Parashar ok I'll try

  • @arrankaz
    @arrankaz 3 ปีที่แล้ว

    Can the lcd be attached without soldering? For the first one

    • @SuperbTech
      @SuperbTech  3 ปีที่แล้ว +2

      unfortunately not. there are too many pins and loosely connecting them will cause the LCD to malfunction

    • @braedog09
      @braedog09 3 ปีที่แล้ว

      well i used my breadboard and just yeeted the pins from the lcd into the breadboard and put all the wires into the breadboard but idk if this makes a difference :P but i have a mega 2560 instead of uno

    • @carlaocruel
      @carlaocruel ปีที่แล้ว

      just buy a lcd with ic2 module.

  • @sanjaykodape921
    @sanjaykodape921 3 ปีที่แล้ว +1

    Where you are uploading the code

    • @juliogomez4849
      @juliogomez4849 3 ปีที่แล้ว

      regular Arduino software, just search up arduino.cc

  • @KennyGreenBean
    @KennyGreenBean 3 ปีที่แล้ว +9

    can you show us the full code for 1?

  • @spynerblade2806
    @spynerblade2806 ปีที่แล้ว

    Which arduno is in the thumbnail

  • @djigaming4240
    @djigaming4240 3 ปีที่แล้ว

    Ncs song name?

  • @user-px5zy7dc6p
    @user-px5zy7dc6p ปีที่แล้ว

    لوسمحت الاكواد وين

  • @saadnaeem3283
    @saadnaeem3283 4 ปีที่แล้ว +2

    People r people

  • @thephenomenalgaming5328
    @thephenomenalgaming5328 3 ปีที่แล้ว

    I dont can see the code

    • @SuperbTech
      @SuperbTech  3 ปีที่แล้ว

      go to the link to the separate video, i you will find the code in that video's description

  • @rodolfofrancisco1567
    @rodolfofrancisco1567 2 ปีที่แล้ว

    Pagbibilang ka ng adruino module, kailanganpa mo PA magdownload ng program na software at hardwired.hindi PA ready to use or install siya sa motor bike

  • @raghavrajput0308
    @raghavrajput0308 ปีที่แล้ว

    bro u didn't gave any codes

  • @a_l_i_o_p0032
    @a_l_i_o_p0032 3 ปีที่แล้ว

    your code is wrong

  • @nsobirkajulietfai3995
    @nsobirkajulietfai3995 3 ปีที่แล้ว +4

    I can't see the code clearly

    • @programmer4047
      @programmer4047 3 ปีที่แล้ว

      Code is in the description

    • @akankshakandar8122
      @akankshakandar8122 ปีที่แล้ว

      Can you please share the code for 3rd one bcz I'm not able to open this link

  • @makelearningeasy111
    @makelearningeasy111 ปีที่แล้ว +1

    Thermometer crying in the corner.

  • @ferasalfarsi897
    @ferasalfarsi897 ปีที่แล้ว

    Where can we find the codes for these projects?

    • @SuperbTech
      @SuperbTech  ปีที่แล้ว

      I have mentioned links to each project in video description. Go to the video link and you can find the code links in the video descriptions

    • @akankshakandar8122
      @akankshakandar8122 ปีที่แล้ว

      Can you please give code for measure water temperature using Arduino...bcz we are not able to open this link

  • @abear404
    @abear404 3 ปีที่แล้ว

    Are you even showing all the code? You need to at least put the code in the description or at least a link to the code

    • @SuperbTech
      @SuperbTech  3 ปีที่แล้ว +1

      Each project has an individual video, links to the videos are in the description

  • @danielle9632
    @danielle9632 3 ปีที่แล้ว +1

    code is wrong so many errors

  • @Kiniboy
    @Kiniboy หลายเดือนก่อน

    suuuiii

  • @Jpizzy_
    @Jpizzy_ 3 ปีที่แล้ว

    i got like 8 errors

  • @ArunKumar-ok9ck
    @ArunKumar-ok9ck 6 หลายเดือนก่อน

    No

  • @arunalukumarage3564
    @arunalukumarage3564 2 ปีที่แล้ว +1

    Y u can't show the coding clearly👎

    • @SuperbTech
      @SuperbTech  2 ปีที่แล้ว +2

      Pls check the description below. I have link for all the 3 projects, in that individual video description you can find all code and links. Thank you