Multiple Servo Motor Control with Joystick and Arduino

  Рет қаралды 989,367

Maker 101

Maker 101

Күн бұрын

In this tutorial, we will learn how to use multi-servo with Joystick. We will control two pcs servo motor with one Joystick. You can implement your robotic arm projects with reference to this tutorial. Of course we will use external battery / power when doing this.
Also see this project: mXY Board - Low-Budget XY Plotter Drawing Robot Board • Make XY plotter drawin...
Required Hardwares:
1x Arduino UNO R3:
bit.ly/2xt9MVk
amzn.to/2LZr6t4
2x Servo Motor:
bit.ly/2JfGtuj
amzn.to/3avwe1N
1x Joystick Module:
bit.ly/2kJkU7a
amzn.to/3u5097N
3 in 1 Jumper Wire:
bit.ly/2J6de9E
amzn.to/3doetmT
1x Breadboard:
bit.ly/2H9YSUa
amzn.to/3qxLxwm
Recommended Items:
Use Your Muscles in Project - amzn.to/3wdL45C
37 Sensor & Module Packages - amzn.to/3m66WeQ
Try this Robot Arm - amzn.to/3fq8DCl
Best Resin 3D Printer - amzn.to/39tY8KB
Arduino Compatible Kits - bit.ly/2J2AFF7
Banggood Spring Sale - bit.ly/3slMbOn
Source Code:
github.com/Mer...
Connections:
The external battery VCC / GND connect to the breadboard.
The Arduino GND connect to the breadboard's GND input
The Servo1 VCC and GND connect to the breadboard's VCC / GND inputs
The Servo1 Signal connect to the Arduino Digital PWM 3
The Servo2 VCC and GND connect to the breadboard's VCC / GND inputs
The Servo2 Signal connect to the Arduino Digital PWM 5
The Joystick GND connect to the Arduino GND
The Joystick VCC connect to the Arduino VCC
The Joystick 'X' (in some modules 'H') connect to the Arduino Analog 0
The Joystick 'Y' (in some modules 'V') connect to the Arduino Analog 1
The Joystick 'SW' (switch or button) not connected.

Пікірлер: 440
@maker101io
@maker101io 3 жыл бұрын
Source Code: github.com/MertArduino/Multiple-Servo-Motor-Control-with-Joystick-and-Arduino Recommended Items: Use Your Muscles in Project - amzn.to/3wdL45C​ 37 Sensor & Module Packages - amzn.to/3m66WeQ​ Try this Robot Arm - amzn.to/3fq8DCl​ Best Resin 3D Printer - amzn.to/39tY8KB​ Arduino Compatible Kits - bit.ly/2J2AFF7​ Banggood Spring Sale - bit.ly/3slMbOn
@zzzzzz...9902
@zzzzzz...9902 7 жыл бұрын
It works! It works! The dislike button works! Joke, the circuit works and the like button works. Runs like my girlfriend.
@zzzzzz...9902
@zzzzzz...9902 7 жыл бұрын
Your welcome. Sorry to hear about your computer, I fix them for a living, xd.
@tommybirchify
@tommybirchify 5 жыл бұрын
@@zzzzzz...9902 good one XD
@hieroja1
@hieroja1 4 жыл бұрын
wtf bro
@mateom7201
@mateom7201 4 жыл бұрын
So dirty?
@realSethMeyers
@realSethMeyers 3 жыл бұрын
I have tuberculosis
@vidmantasjuska4084
@vidmantasjuska4084 7 жыл бұрын
Here is code people //add the servo libary #include //define our servos Servo servo1; Servo servo2; //define joystick pins (Analog) int joyX = 0; int joyY = 1; //variable to read the values from the analog pins int joyVal; void setup () { //attaches our servos on pins PWM 3-5 servo1.attach(3); servo2.attach(5); } void loop () { //read the value of joystick (betwen 0-1023) joyVal = analogRead(joyX); joyVal = map(joyVal, 0, 1023, 0, 180); //servo value betven 0-180 servo1.write(joyVal); //set the servo position acording to the joystick value joyVal = analogRead(joyY); joyVal = map (joyVal, 0, 1023, 0, 180); servo2.write(joyVal); delay(15); }
@Melon-eu1sr
@Melon-eu1sr 7 жыл бұрын
Vidmantas Juska your a life saver!!
@maevebaksa
@maevebaksa 7 жыл бұрын
Thanks from Budapest!
@MrHristoB
@MrHristoB 6 жыл бұрын
Aciu!!! :-)
@mettigel1357
@mettigel1357 6 жыл бұрын
Thank You
@pablo271idn9
@pablo271idn9 6 жыл бұрын
thx
@saqibcom
@saqibcom 6 жыл бұрын
//add the servo library #include //define our servos Servo servo1; Servo servo2; //define joystick pins (Analog) int joyX = 0; int joyY = 1; //variable to read the values from the analog pins int joyVal; void setup() { //attaches our servos on pin PWM 3-5 servo1.attach(3); servo2.attach(5); } void loop() { //read the value of joystick (between 0-1023) joyVal = analogRead(joyX); joyVal = map (joyVal, 0, 1023, 0, 180); //servo value between 0-180 servo1.write(joyVal); //set the servo position according to the joystick value joyVal = analogRead(joyY); joyVal = map (joyVal, 0, 1023, 0, 180); servo2.write(joyVal); delay(15); }
@GhostRiderSpiritOfVengeance
@GhostRiderSpiritOfVengeance 3 жыл бұрын
I spent my entire weekend looking for a tutorial that describes how to set this up in full detail from a beginner standpoint. Thank you.
@Watermeloncatreal
@Watermeloncatreal 4 ай бұрын
Same
@kajus.v.4220
@kajus.v.4220 4 жыл бұрын
what is the name of the program
@MultiCreasey
@MultiCreasey 7 жыл бұрын
Thank you, a really clear and helpful video. Appreciate your time in making it and for sharing.
@maevebaksa
@maevebaksa 7 жыл бұрын
Agreed! +1 Subscriber!
@luisangelherndezramirez433
@luisangelherndezramirez433 4 жыл бұрын
Holaaaa
@andreabinotto9930
@andreabinotto9930 6 жыл бұрын
Thank you, great tutorial ;), what's the name of this song?
@fazbearEntertainment188
@fazbearEntertainment188 6 ай бұрын
it does not work
@MrHenryrolls
@MrHenryrolls 7 жыл бұрын
Lovely clear tutorials Mert. Thank you. Just one concern, the servo in my kit looks identical (SG90), yet checking its operating voltage online it's 3.0-7.2v (ideally 4.8v). I don't want to blow it on my first attempt.
@derrickchilders6185
@derrickchilders6185 Жыл бұрын
It’s blew my board! Don’t try it.
@mikeoxmaul9386
@mikeoxmaul9386 Жыл бұрын
​@Frectieyou don't need to add a battery if that is the servo spec, just plug it straight into the board
@indivsultanabinavsi8909
@indivsultanabinavsi8909 7 жыл бұрын
Not All Heroes wearing capes. Thank you for the tutorial
@fazmisharaff8839
@fazmisharaff8839 6 жыл бұрын
Plz make a wireless version using a bluetooth module but great video you just got a new sub!
@vivekdixit5149
@vivekdixit5149 6 жыл бұрын
Fazmi Sharaff i am agree with u
@daxliniere
@daxliniere 3 жыл бұрын
The problem is that when you release the joystick, the motor returns to the centre position. The code also needs some averaging to account for the jittery values from the A/D converter.
@PatrickGreil-n6j
@PatrickGreil-n6j 11 ай бұрын
Have you found a solution to this?
@benfree_man
@benfree_man 5 жыл бұрын
I appreciate this so much. Helped me a ton!
@technikfreaksmj5321
@technikfreaksmj5321 3 жыл бұрын
Vcc = 5 Volts
@samuelhawksworth1923
@samuelhawksworth1923 6 жыл бұрын
I’m subbing to you dude, I’ve been needing this help with my project for a year and your the first person to help me in an easy way
@tman16034HNG
@tman16034HNG 5 жыл бұрын
can you provide a wiring diagram, please?
@agustinvercesi9764
@agustinvercesi9764 7 жыл бұрын
Hi, would the code work the same with an arduino nano or change into something? Thank you
@Fitzling
@Fitzling 3 жыл бұрын
I think it would be the same, just watch out. A servo needs to be connected to PWM and in don't know if the Nano has enough
@TDensmores
@TDensmores 6 жыл бұрын
Thank you for this video can i download the code?
@KIVPush
@KIVPush 6 жыл бұрын
Hello, wonderful video. I built one with 4 servos. 2 servos are controlled if the button is not pressed. The other 2 are controlled when the button IS pressed. I can only control the second 2 when the button is pressed and held down. Is there a way to write a code so each time you click the button it switches back and forth between each servo set? Like if I click the button and then release it, it switches to one set. If I click it again and release it, it switches back to the first set. Is there a way to do this?
@JustinS06
@JustinS06 2 жыл бұрын
I know I'm late, but for those looking for the same thing here it is: First of all, it's really easy. You just need a boolean which is either True (1st mode) or False (2d mode). At the start of loop(), check if the button has been pressed, if so do this: bool Mode = True// True will be the 1st mode and False is the 2d mode. void loop(){ if (the button has been pressed) Mode = !Mode // Doing this sets mode equal to the opposite of mode. So: if it's True, it will be False and vice versa. // check if Mode is true, if so, control the first 2 servos // check if Mode is false, if so control the last 2 servos }
@samuelkleemayr5498
@samuelkleemayr5498 4 жыл бұрын
. .
@spamton_bigshot28
@spamton_bigshot28 Ай бұрын
I understand this very well but could you please tell if and how it possible to add more joysticks and servos for those ones all at once. If so thankd ❤
@mangeshmahajan4445
@mangeshmahajan4445 7 жыл бұрын
thank you! what music is playing?
@clashingdude
@clashingdude 4 жыл бұрын
Arduino code please 😀😀
@oikmo
@oikmo 3 жыл бұрын
Github link in description
@VirtualWater
@VirtualWater 12 күн бұрын
Can you make a video on how to control a servo motor using a digital joystick and maybe add eye tracking?
@Rimurutempest4533
@Rimurutempest4533 8 ай бұрын
My sevor moter is making buzzing sound and not working properly can anyone help me with this I don't know what is worng with my moter or something else plzz help me 😞🥲
@derrickchilders6185
@derrickchilders6185 Жыл бұрын
This tutorial fried my uno! 9v is way too much for the servos! Be warned!
@carolineh.9303
@carolineh.9303 Ай бұрын
can you modify the code and send it to me so that both servos will follow the same movement only? like there is no controlling one seprately
@danielbalentina
@danielbalentina Жыл бұрын
Can someone make this code for 2 arduino uno's with the NRF24L01+ tranceiver modules.
@brandonromero421
@brandonromero421 3 жыл бұрын
This works if I connect arduino to a Xbox controller and use this code for the joysticks, right?? Someone please confirm
@wuz6384
@wuz6384 Жыл бұрын
its not working. i have followed the steps and the code is all correct. how do i fix it
@lordnever1
@lordnever1 6 жыл бұрын
This is my very first Arduino project and it worked great! I am so happy that I watched this video. Time for my next project, thanks a lot great video!
@kamenstefanov2811
@kamenstefanov2811 5 жыл бұрын
Didn't you have error in the code?
@kkrokingkiller456
@kkrokingkiller456 4 жыл бұрын
@@kamenstefanov2811 for me it does't work
@kamenstefanov2811
@kamenstefanov2811 4 жыл бұрын
@@kkrokingkiller456 it was a long time ago but i remeber that the mistake was very simple if you look closely you'd find it
@kkrokingkiller456
@kkrokingkiller456 4 жыл бұрын
@@kamenstefanov2811 thanks
@Maggot-ov4eu
@Maggot-ov4eu 5 жыл бұрын
This is so under appreciated. Thy is had to be the best tutorial
@andorazafy
@andorazafy Жыл бұрын
But guys how should i do if i don't want the servo return back when joystick return to the middle
@222hissam
@222hissam 6 жыл бұрын
there is mistake. you must say A0 and A1 in the code
@kamenstefanov2811
@kamenstefanov2811 5 жыл бұрын
Could you tell where exactly has to be A0 and A1, please?
@tommybirchify
@tommybirchify 5 жыл бұрын
dear kamo kamo ao and a1 is near power but in the analog section or look in the vid
@baitodansu
@baitodansu 5 жыл бұрын
@@tommybirchify heal yeah you right
@tommybirchify
@tommybirchify 5 жыл бұрын
@@baitodansu hell not heal👍
@乇R-u6r
@乇R-u6r Жыл бұрын
Que librerías ocupa ?, es que tengo problemas con el codigo y supongo son por las librerías
@musabmahmood1196
@musabmahmood1196 7 жыл бұрын
sir if i want to connect servos on one aurdino and connect to NRF24L01 module and joystick on other aurdino with another NRF24L01 wireless module................then something change in code will occur or not?? can i put servos code to one ardino and analog joystick code on other ardiuno then it would be correct or not ?? if not then plz help me
@manishkarsh6836
@manishkarsh6836 Жыл бұрын
Please provide a grip for grabbing the object by using this 🙏🙏
@aniketpratap8387
@aniketpratap8387 2 жыл бұрын
Excellent and Such a simple explanation ….. People like you make this world a better place....
@bhavyachouhan5442
@bhavyachouhan5442 6 жыл бұрын
How can we control 4 servos with 2 joysticks.. Can you share me the code on gmail.
@thesheikhtutor4982
@thesheikhtutor4982 2 жыл бұрын
Can I control 5bldc motors and 1 servo motor with this joystick??
@ayushkr3917
@ayushkr3917 3 жыл бұрын
can u help me its not working for me.. i have done the exact same steps still this didn't work
@technoexpert872
@technoexpert872 7 жыл бұрын
I am getting "servo1 was not declared in this scope" error. but i wrote the same code as you have mentioned in the video..then what's the problem?
@mlggeek1812
@mlggeek1812 5 жыл бұрын
Did you install the library?
@mdsomir6248
@mdsomir6248 4 жыл бұрын
ami ki ai rimut ti kinte pari apnader kas theke 01956537032
@beratercin4984
@beratercin4984 6 жыл бұрын
Merhaba çalışmanız güzel olmuş fakat bana aynı anda tek eksenden 2 servo kontrolü birden istiyorum.Sağa çekildiğinde birisi sağa birsi sola dönmeli nasıl yapabilirim ?
@tecnojap3778
@tecnojap3778 3 жыл бұрын
I make similar videos, I don't speak, but if I put text to my videos
@tarkeshwarnath7124
@tarkeshwarnath7124 5 жыл бұрын
Can this work on joystick shield? Please tell. I am a 12 year old
@rasimgokmen3361
@rasimgokmen3361 7 жыл бұрын
Ben uçak yapıyorum ve flaplar için 2 servo kullandım ancak bir sıkıntım var ben joysticği sağa doğru hareket ettirince uçağındaki servolardan biri yukarı gitmeli biri de aşağı (yani zıttını yapmalı) şimdiye kadar birini sorunsuz kontrol ettim ancak zıt hareket konusunda kodlarda kafam karıştı neyapmalıyım ?
@zaido8735
@zaido8735 7 жыл бұрын
Breadboard un toprağını arduino nun toprağına bağlamandaki sebep nedir? Ayrıca anlatım tertemiz çok başarılı.
@damiengarcia2126
@damiengarcia2126 3 жыл бұрын
how can i double it for 4 servos with 2 joysticks. cant get it to work
@toa7914
@toa7914 2 жыл бұрын
Awesome video, dude. First time using servos and i feel very accomplished. +1 like
@notphoenix0305
@notphoenix0305 7 ай бұрын
thanks for the video but can you go a bit slower?
@lot10games
@lot10games 4 жыл бұрын
Is it ok to connect to 5V of the arduino board a 9V battery? The VIN pin is more suitable for that... I think .Cool video
@CoyoteFPV
@CoyoteFPV 7 жыл бұрын
Could you share the code to enable the joypads momentary switch to scroll through a 3rd servo channel. it 1000us 1500us and then on the third press 2000us
@samopal11
@samopal11 7 жыл бұрын
with nrf24l01 please a motor control with joystick like a tank traccion:::))))))) good videos!!
@Profe_Zandor
@Profe_Zandor Жыл бұрын
wow soy de Colombia y me gustó el canal video, tiene un curso completo de Arduino?, Thanks
@hots2215
@hots2215 4 жыл бұрын
Hi there I got a question Imagine a rc receiver which is powered up by an external battery and is sending pwm signal to a servo Now, I got an arduino and I want to read the signal is being sent to the servo from the receiver but my arduino is not powered by that battery how should I wire up the system? thanks for your help!
@magicianofelectronics951
@magicianofelectronics951 4 жыл бұрын
You can read normal output in serial monitor, and what you want to do by not powering Arduino with same power supply?
@burstfireno1617
@burstfireno1617 10 ай бұрын
Harikasin kardesim :) ûye oldum
@victorsandoval6145
@victorsandoval6145 6 жыл бұрын
Como le hizo para poner el compilador de color negro
@grahamtech
@grahamtech 7 жыл бұрын
hi im building a robotic hand , and i wanted to know if thers any way you could tell me how to control 5 servos with analog joysticks or one joystick to control all five
@alialtinel6167
@alialtinel6167 7 жыл бұрын
_ift_servo:33: error: stray '\357' in program } ^ _ift_servo:33: error: stray '\273' in program _ift_servo:33: error: stray '\277' in program exit status 1 stray '\357' in program So i get this error forums say that its a problem caused by weird symbols in the code so i wrote it again(first time its was a copy paste and coulnd make it work any suggestions?
@rajeevabariar7737
@rajeevabariar7737 7 жыл бұрын
great dude hey I wanted to make a simple nano quad using small DC motors(the one used in RC helicopters) but how can I vary the speed of four motors simultaneously please reply
@sagarghatti
@sagarghatti 5 жыл бұрын
hi. i like development . in this video controlling 2 servo motor. rather than this . some one tel me how to control one servo motor and one BO motor , using single joystick.
@syahrul9282
@syahrul9282 7 жыл бұрын
man ty so much really what im looking for thank god bless u man!!! because i am searching this to make the robot arm actually😂
@simoneleccese1536
@simoneleccese1536 4 жыл бұрын
Me too
@lamecaroboteca3102
@lamecaroboteca3102 5 жыл бұрын
Di No a la piratería de ARDUINO
@anon_efx
@anon_efx Жыл бұрын
this is what i was looking for lol finnaly i found it
@samopal11
@samopal11 7 жыл бұрын
GOOD video!.. can you make it with nfr24l01 please??...
@mohabkhabbaz2168
@mohabkhabbaz2168 3 жыл бұрын
Hi, I am trying to make a arduino robot with a grip arm, anyone knows how to program the switch on the joystick to another servo ????? Any help will be greatly appreciated.
@---is8zn
@---is8zn Жыл бұрын
Thank you for such great code algorythm and so detailed comments //.... may god-machine bless you with his divine wisdom
@hkiceman001
@hkiceman001 7 жыл бұрын
Thank you, a very helpful video for me. I watch all your video to learn arduino...thx too much
@Harlequin43
@Harlequin43 7 жыл бұрын
Do you know where I can possibly get a generic sketch for a generiric arduino powered hexapod? So that I could control with a PS dualshock gamepad via bluetooth. I'm way too stupid to write it myself.
@vg5028
@vg5028 7 жыл бұрын
I read that it is not recommended to power an Arduino using a 9V battery as in order to step the voltage down, the Arduino's on board linear voltage regulator has to waste a lot of power. This causes 2 things: 1. The regulator gets quite hot 2. The battery is drained very quickly as 40% of its energy is wasted as heat It is recommended to use an external voltage regulator to step down the 9V to the Arduino's compatible 5V, which would solve the arduino's on board regulator's heating issue. Even better would be to use a switching regulator, which would solve both the battery drainage and heating issue.
@charlescaudill670
@charlescaudill670 Жыл бұрын
Is there any way to control the servos as a unit. I need both servos to go forward when i push the joystick forward but one to back off as i pull the stick sideways. All I’ve been able to find is the configuration shown in this video
@四喜丸子-c7q
@四喜丸子-c7q 7 жыл бұрын
hello ! I like your video very much. It is clear and funny. What' s more, the music and the background are very well. However, I have a question: How can I use arduino with mini-joystick to control serve motor wirelessly ? I don't know if you have time to reply me, but I look forwarding to hearing from you.
@serhaterenatalay9948
@serhaterenatalay9948 4 жыл бұрын
arduino ile mini dalgıç pompa ile belli aralıklarla bir kavanozdan diğerine su aktarma(nem ölçersiz).Bunun videosu gelirse çok mutlu olurum. With the mini diver pump with arduino, transfer water from one jar to another at regular intervals (without moisture meter). I'd be very happy if there was a video of this.
@ParashuramaM-ny7zp
@ParashuramaM-ny7zp 3 ай бұрын
it is how many voltage battery
@---is8zn
@---is8zn Жыл бұрын
and also i can propose you to make mutated scheme - where single joystick controlling one servo and one regular stepper, or two steppers and one motor will be controlled by joystick button.
@princening679
@princening679 4 жыл бұрын
Sir if we move forward joy forward arm should move forward even joystick come to original position code please
@83eroastery96
@83eroastery96 6 жыл бұрын
Deciding on Arduino or Phidgets then I found your site. My project is controlling a valve with a 10k pot. I am told the only type I can use is a speed pot. But none available at 10k only 5k. The has 0-10vdc. As you turn to the left it closes the valve and to the right opens it. It needs to be somewhat sensitive. Can this be done with Arduino Thanks Charlie
@adin_exam
@adin_exam Жыл бұрын
did servo need library for programing it?
@user-wg6ik1wi6s
@user-wg6ik1wi6s 4 жыл бұрын
What about a Wireless joystick for servo motor control? Can that be done with Arduino?
@magicianofelectronics951
@magicianofelectronics951 4 жыл бұрын
Yes
@pitpuppies
@pitpuppies 6 жыл бұрын
I copied the code but says joyX was not declared in this scope HELP please cant figure out what is wrong
@pitpuppies
@pitpuppies 6 жыл бұрын
I fixed it had to e's in joyX
@kamenstefanov2811
@kamenstefanov2811 5 жыл бұрын
Did you finished the project
@kamenstefanov2811
@kamenstefanov2811 5 жыл бұрын
Because my code is wrong . Could you help me.
@luisdominguezco
@luisdominguezco 4 жыл бұрын
some servos stop working by connecting the 9V Battery that way, I Thing they are burn now.
@dhakshingk
@dhakshingk 4 жыл бұрын
Use a 6v battery holder instead. Worked for me as most servos operate between 4.8 and 6.6v
@omicron296
@omicron296 Жыл бұрын
Parabéns pelo vídeo e por compartilhar o seu conhecimento! 🙂
@mineroyales8118
@mineroyales8118 3 жыл бұрын
same it help me the best its has code and pins to show conect
@nuradlinathirah5340
@nuradlinathirah5340 3 жыл бұрын
Hello..may i ask.. can i control 6 servomotor by using only one joystick?
@kaidnl
@kaidnl 7 жыл бұрын
Hello Mert, I want to do the same as this, only I want the stepper to make little steps as I move the joystick. and when I centre the joystick It should stay at the last location until I move the joystick again, hope you understand what I mean. Can you show us how you would change the code for that?
@MadhuVishwanath
@MadhuVishwanath 7 жыл бұрын
Why was the battery used? The modules could be powered by the arduino right?
@Joel_suwartik_wasekar
@Joel_suwartik_wasekar 2 жыл бұрын
Sir how to control 4 servo from 2 joystick
@deepakgoyal4553
@deepakgoyal4553 6 жыл бұрын
hello Mert Arduino and Tech.I am making a hand controlled accelerator in which i am using a potentiometer which will sense the movement and give the input to arduino. Thereafter Arduino will scale the input rotate the servo motor which will press the accelerator pedal. Canyou tell me which type of potentiometer should i use and how to code it
@krishnendusengupta777
@krishnendusengupta777 2 жыл бұрын
connection diagram picture is not pressent
@aldrinlimos5159
@aldrinlimos5159 4 жыл бұрын
Just bought an Arduino recently, and I hadn't read any of the documentation yet. Took me an hour to try and fiddle with the wonky 0-512,512-1024 range with some crude equations to have the servo move with the switch. Kept freezing and moving occasionally before I decided to look for a video like this :P.
@francohidalgo1704
@francohidalgo1704 5 жыл бұрын
Hello, im from Argentina. How can i do if i want to use 4 servos ( and other joystick)?
@ujjainwalataher1322
@ujjainwalataher1322 7 жыл бұрын
when i am connecting my joystick with arduino ... the arduino uno power led stops and same is happening with mega. first i thought it must be issue for power then i checked all the connections and everything. please help I am not understanding what is the issue exactly...
@Sate_Padang_Rp20.000
@Sate_Padang_Rp20.000 6 жыл бұрын
What programming language is this
@MinhNguyen-sh3ku
@MinhNguyen-sh3ku 6 жыл бұрын
c++
@dearcustomers2023
@dearcustomers2023 7 жыл бұрын
I got the problem of Servo Jitter i.e., it is vibrating like hell.... What to do?
@suniltanwar7625
@suniltanwar7625 3 жыл бұрын
How to do it without external power source
@shaikmohammedmujeeb5359
@shaikmohammedmujeeb5359 6 жыл бұрын
sir can i get a code for 6 servo controle using 2 joystick modules.i need it for my robotic arm.i have searched everywhere,but i didnt get.....plz help me in this.
@wonteclanka8585
@wonteclanka8585 10 ай бұрын
I have only an one servo motor can it run
@oikmo
@oikmo 3 жыл бұрын
hey just asking if i wanted a second joystick that controlled to more servos how would i do it?
Arduino lessons - Servo control by arduino
11:17
Заметки Ардуинщика
Рет қаралды 854 М.
How To Make Robots Move Smoothly | Arduino Tutorial
12:28
James Bruton
Рет қаралды 747 М.
when you have plan B 😂
00:11
Andrey Grechka
Рет қаралды 67 МЛН
Стойкость Фёдора поразила всех!
00:58
МИНУС БАЛЛ
Рет қаралды 4,5 МЛН
💩Поу и Поулина ☠️МОЧАТ 😖Хмурых Тварей?!
00:34
Ной Анимация
Рет қаралды 2 МЛН
Nastya and balloon challenge
00:23
Nastya
Рет қаралды 69 МЛН
Control 2 Servos with a Joystick and Arduino: Wiring + Code
15:18
Rachel De Barros
Рет қаралды 8 М.
Robotic Arm with Arduino - Save/Play/Export/Import Positions.
9:48
FABRI creator
Рет қаралды 87 М.
Arduino Servo Control: How to Make a Laser Turret with XOD
12:32
Afrotechmods
Рет қаралды 953 М.
Arduino Joystick ile Servo Motor Kontrolü
9:40
Robotistan
Рет қаралды 182 М.
How to use Servo Motor and Joystick Without Arduino
4:02
Mousa - Simple Projects
Рет қаралды 34 М.
Make a TINY Arduino Drone with FPV Camera - Will It Fly?
20:26
Max Imagination
Рет қаралды 1 МЛН
Using Servo Motors with Arduino
43:06
DroneBot Workshop
Рет қаралды 1,4 МЛН
¿CÓMO CONTROLAR un SERVOMOTOR con un JOYSTICK? ▶ ARDUINO
24:18
David Portilla - Programación y Electrónica
Рет қаралды 22 М.
when you have plan B 😂
00:11
Andrey Grechka
Рет қаралды 67 МЛН