How to Make Servo Robotic Arm using Arduino.

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ก.ย. 2024
  • I made Robotic Arm using Arduino.
    Thank you for watching. Have a nice day.
    Components :
    - Arudino Nano
    - 4 x SG90 Micro Servo Motor
    - 4 x Rotary Potentiometer B20K
    - Mini Breadoard
    Source code :
    - drive.google.c...
    Music Info:
    - Obsession by K-music : • Video
    - Rose by K-music : • Video

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

  • @franco5456
    @franco5456 4 ปีที่แล้ว +216

    For anyone who isn't able to open the file for the code, the code is:
    #include
    int pot_pin_claw = A0;
    int pot_pin_bottom = A1;
    int pot_pin_joint1 = A2;
    int pot_pin_joint2 = A3;
    int value_claw;
    int value_bottom;
    int value_joint1;
    int value_joint2;
    Servo servo_claw;
    Servo servo_bottom;
    Servo servo_joint1;
    Servo servo_joint2;
    void setup() {
    servo_claw.attach(2);
    servo_bottom.attach(3);
    servo_joint1.attach(4);
    servo_joint2.attach(5);
    Serial.begin(9600);
    }
    void loop() {
    int pot_inputs[4];
    pot_inputs[0] = analogRead(pot_pin_claw);
    pot_inputs[1] = analogRead(pot_pin_bottom);
    pot_inputs[2] = analogRead(pot_pin_joint1);
    pot_inputs[3] = analogRead(pot_pin_joint2);
    if(pot_inputs[0] > 511) {
    value_claw = 1;
    } else {
    value_claw = 0;
    }

    value_bottom = map(pot_inputs[1], 110, 800, 180, 0);
    value_joint1 = map(pot_inputs[2], 1023, 600, 30, 160);
    value_joint2 = map(pot_inputs[3], 170, 880, 180, 0);
    if(value_claw) {
    servo_claw.write(80);
    } else {
    servo_claw.write(50);
    }

    servo_bottom.write(value_bottom);
    servo_joint1.write(value_joint1);
    servo_joint2.write(value_joint2);
    delay(5);
    }

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

      do u have the circuit diagram , thank u

    • @AtharvP07
      @AtharvP07 4 ปีที่แล้ว

      @Deepika Sharma You need to extract the zip file first. And then give the access and open it. Its simple actually. Idk what problem you faced.

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

      Hi

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

      it works?

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

      I would really like to know what I am doing wrong because I spent $100 on this project and the code is not uploading to the arduino.

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

    #include
    int pot_pin_claw = A0;
    int pot_pin_botton = A1;
    int pot_pin_joint1 = A2;
    int pot_pin_joint2 = A3;
    int value_claw;
    int value_botton;
    int value_joint1;
    int value_joint2;
    Servo servo_claw;
    Servo servo_botton;
    Servo servo_joint1;
    Servo servo_joint2;
    void setup(){
    servo_claw.attach(2);
    servo_botton.attach(3);
    servo_joint1.attach(4);
    servo_joint2.attach(5);
    Serial.begin(9600);
    }
    void loop(){
    int pot_inputs[4];
    pot_inputs[0] = analogRead(pot_pin_claw);
    pot_inputs[1] = analogRead(pot_pin_botton);
    pot_inputs[2] = analogRead(pot_pin_joint1);
    pot_inputs[3] = analogRead(pot_pin_joint2);
    if(pot_inputs[0] > 511){
    value_claw = 1;
    } else{
    value_claw = 0;
    }
    value_botton = map(pot_inputs[1]. 110. 800. 180. 0);
    value_joint1 = map(pot_inputs[2]. 1023. 600. 30. 160);
    value_joint2 = map(pot_inputs[3]. 170. 880. 180. 0);
    if(value_claw) {
    servo_claw.write(80):
    } else{
    servo_claw.write(50);
    }
    servo_botton.write(value_botton);
    servo_joint1.write(value_joint1);
    servo_joint2.write(value_joint2);
    delay(5)
    }

  • @mushahidhassan3437
    @mushahidhassan3437 4 ปีที่แล้ว +57

    Show us the breadboard connections

  • @l5-cs.
    @l5-cs. 4 ปีที่แล้ว +7

    I am gonna do this I’m just waiting until I have enough redbull cans to replace the popsicle sticks with so I can have a redbull arm and is like to use much heavier servos

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

    its not working how its should work claw making buzzing noise arm are unstable. I do not recommend waist money and time on this crap

  • @maurovolpi
    @maurovolpi 5 ปีที่แล้ว +11

    se cayo el link amigo. lo puedes volver a colocar?

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

    can fix the google drive its showing The requested URL was not found on this server

  • @santoshm7354
    @santoshm7354 4 ปีที่แล้ว +6

    In some other videos.. i saw. that .. if we record the movements once.. then it can repeat it again and again...is that possible with. Any aurdino.. cuz. The other one also using aurdino

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

      It only depends on your programming skils

  • @luisalfredogarciagutierrez2256
    @luisalfredogarciagutierrez2256 5 ปีที่แล้ว +7

    link error 404

  • @petercrinson1797
    @petercrinson1797 4 ปีที่แล้ว +10

    A great stay at home Covid-19 lock down project. I made it using a BBC Micro Bit with a Kitronics servo driver board and I/O edge connector.

    • @siddharajk
      @siddharajk 4 ปีที่แล้ว

      Where are we supposed to keep the pot regulator at? Do we have to rotate it half before making the arms?

    • @harigovind8902
      @harigovind8902 4 ปีที่แล้ว

      @@siddharajk hi check out #TechNickk

  • @luisenriquediaz2525
    @luisenriquediaz2525 5 ปีที่แล้ว +4

    brother looks I need a huge favor from you I'm doing this project for the university and I have everything done that I just need to put the cables on the breadboard that I did it in a way and it does not work for me please help me pass me an outline or something but help me somehow

  • @DSVidyasagar
    @DSVidyasagar 5 ปีที่แล้ว +18

    Highly elaborated work! Must be appreciated! Great design particularly for the jaw of robotic arm. What a fantastic idea! Keep up such great work!

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

    can the actions of the arm be put on loop? or is this a one time code?

  • @colegiodecienciascomercial1252
    @colegiodecienciascomercial1252 5 ปีที่แล้ว +3

    Hello, the link to access the code does not work.
    Is there any way to reload it?
    Thanks in advance, excellent work.

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

    My servo and potentiometer r not synced?? What values to be altered from the code to sync it??

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

      Did ur code work brother

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

    que paso con el codigo, porque no puedo abrirlo o ya fue dado de baja???

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

    Puede subir de nuevo el código, por favor? Gracias....

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

    HELLO we are having some errors in our project relating to arduino codings please tell us what to do . the error is given below:

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

    ALGUIEN TIENE EL CODIGO DE PROGRAMACION? QUE LO PUEDA AGREGAR, GRACIAS!

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

    Can we use any other value of potwntiometer instead of b20k

  • @Blaiz12-wz4qj
    @Blaiz12-wz4qj 9 หลายเดือนก่อน

    the link does not work and you not even saying what I should and you did not list the full parts for the project. AT LEST ADD CAPTIONS

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

    Few years ago I made similar arm but with record and play function. You can check that out here:
    th-cam.com/video/Ma79CQSiT_A/w-d-xo.html

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

    Sir, can I used 6 DOF servo motors in a breadboard instead of 4 DOF servo motors with a breadboard in a robotic arm project? Does it work? Please reply to my questions. Thank you, sir.

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

      I does work (the principle is the same). You just have to add the two extra servos and potentiometers and write extra code for those too. You'd also probably need a stronger power source.

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

    would u pls send the circuit diagram also

  • @JACE-rr5xv
    @JACE-rr5xv 3 ปีที่แล้ว +1

    Χ;χαχα κινεζε

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

    I have 100k and -10k potential meters so which is best

  • @Sandeepkaur-bg7nh
    @Sandeepkaur-bg7nh 5 หลายเดือนก่อน

    hlo plz tell me that why this drive link is not working and showing error plz share it in comment section i urgently needed it

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

    the source code link is not working, could you please repost?

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

    Felicitaciones. Que pena que ya no esta disponible el codigo...

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

    Hanzhen harmonic drive gear , over 30 years experience ,,robot arm gear

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

    Show us circuit diagram

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

    pls shre link, it is not working pls

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

    Improved version here - th-cam.com/video/zgZ3V056lZs/w-d-xo.html

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

    Can you send the link code again, cuz the link on the bio is error

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

    te quedo muy bien. yo tengo que hacer un proyecto asi me ayudarias

  • @phamworks
    @phamworks 5 ปีที่แล้ว +6

    A great and creative solution! Very nice job.

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

    Alguien por favor me podría mandar bn como se debe colocar cada cable ,quiero hacerlo pero me bloqueo en esa parte v: aiudaaaa

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

    Circuit diagram pls

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

    hola se podrian grabar las trayectorias? especificadas

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

    Sir, do you have the circuit diagram,? I need the circuit diagram, it's urgent. Thank you, sir.

  • @learn.w.e
    @learn.w.e 5 หลายเดือนก่อน

    I can not reach the code, can you send the code for me?

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

    bro i need help pls reply

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

    este link es de otro video y anda "www.mediafire.com/folder/0lwkm2ze12cnt/servo_arm_file"

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

    its code is not being downloaded 404 error

  • @ogun-island
    @ogun-island 2 ปีที่แล้ว +1

    I love you my life safe man

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

    Source code link doesnt work😢

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

    Is the programing in codeblock

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

    Sir, can I used a 10 k potentiometer instead of a Rotary Potentiometer B20K in a robotic arm project? Does this project work or not? Please reply to my questions. Thank you, sir.

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

      Yea, they only need voltage potentials, not much current so 10k will work

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

    Circuit diagram???

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

    ocupo el código de arduino porfa

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

    i could not find the source code

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

    my project aint working

  • @d.predeaptha564
    @d.predeaptha564 2 ปีที่แล้ว +1

    Can a gear motor replace a servomotor?

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

    Sir, can you tell me what is this blue square matt and also can you give me the link to buy the blue square matt? Thank you, sir.

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

    se podría remplazar las baterías por un panel solar ?

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

    the robot arm looks so ugly!

  • @manuelhoyos9110
    @manuelhoyos9110 29 วันที่ผ่านมา

    Diagrama de la placa?

  • @kpm-mbklaten8638
    @kpm-mbklaten8638 5 ปีที่แล้ว +2

    Try using hall sensor for more precise instead of potensio

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

    bro please give the code

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

    The link is not working

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

    Sir, code link is not opening,
    Anyone please help 🙏 @namu lab

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

    the link is not opening

  • @pablopereyra6967
    @pablopereyra6967 4 ปีที่แล้ว

    hola desde argentina tendrA S ELDIAGRAMA DE CONEXIONES

  • @ngocthe7210
    @ngocthe7210 4 ปีที่แล้ว

    cho e xin code với ạ , link kia lỗi r ạ, ngocthe9xbg2k@gmail.com

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

    Hi cant open the code

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

    i will promote your video for freee

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

    Sir give connections

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

    It'd be cool to add hepatic feedback

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

    Bro i need circut diagram and by the way best video for robotic arm

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

    Can i use ardunio uno on this project?

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

    How are the connections of your dupont wires so stable without some soldering?

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

    Does this work with an arduino uno insted of an arduino nano?

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

    Hanzhen harmonic drive gear , robot arm gear , over 30 years experience

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

    Bro please share the circuit diagram .

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

    Thank you so much. I just spent $100 dollars on this project and all it did is burn my potentiometer and make a bunch of noises. And I am so glad that you did not put the wiring information in the video. (sarcasm) Once again Thank you.

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

      Bro you need to know a little about reading arduino code in these situations plus these items don't cost that much lol

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

      @@JavinarExe where I live, the cost is quite high

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

    hiii brooo , how did you avoid vibration in servo motors , i used additional power supply to avoid it still no use . do you have any suggestion

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

      use step motors instead, they're way smoother and very cheap

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

    kindly share the coding program here in comment of this circuit

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

    هل السيفو موتر 360 درجة او 180 درجة

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

    where can u get the source code for this project @Namu Lab
    Pls help gut guys

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

    URL dead :(

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

    Oye

  • @reddappa4824
    @reddappa4824 4 ปีที่แล้ว

    Guys code not compiling anyone please help??

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

    Really cool idea but instead of blasting music useful commenter or labels will be better and you should show the breadboard connection

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

    code link is broken, can i have the new link.. thanks

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

    can you show as that arduino program how you done it ?

  • @susantofamily
    @susantofamily 5 ปีที่แล้ว

    Draw sketc please

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

    hola saludos, me podrías enviar el codigo que no me funciona el link
    gracias quedo atento

  • @blindx2453
    @blindx2453 4 ปีที่แล้ว

    Not understanding please do once more slowly

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

    I wasn't able to open the google drive link

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

    Can anyone tell me where to connect the servo motos wires please. ...

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

    코드가 작동하지 않습니다 아마도 복사하여 붙여넣고 설명에 넣을 수 있습니까?

  • @juanc.n8081
    @juanc.n8081 2 ปีที่แล้ว

    I have the Arduino Uno arduino, does it need to be the arduino nano, or do I just need to plug it in where you tell it to?

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

    Source code link has expired!!

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

    يا ريت تحط جنب كل قطعة اسمها

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

    please give an elaborate connection circuit of the arduino, ill subscribe after that.

  • @아현아엄마랑놀자
    @아현아엄마랑놀자 3 ปีที่แล้ว +1

    It's awesome.

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

    Thanks for the video sir. Soon we will have our robotics compitation at our school and Im going to make this.

  • @vijaykumar-he2tl
    @vijaykumar-he2tl 2 ปีที่แล้ว

    Hi! The source code link is not working. Can you please share the code link again? Thank you

  • @umeshsinhabeastmode-cm9ge
    @umeshsinhabeastmode-cm9ge 2 ปีที่แล้ว

    Can you share circuit diagram bro please 🙏🙏🙏

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

    buen día.
    el link de la pagina para acceder al código tiene un error. no permite entrar.