How to Arduino #3 - Servos

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

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

  • @jasond.valentine5931
    @jasond.valentine5931 7 лет назад

    Dear Lonnie Honeycutt.
    Even tho this video is quite old already, 4 years almost, i wanted to thank you for your time doing this. You took more than 20 minutes of your time as an adult, usualy busy beings, to make this content and share it with the world, editing and rendering the video and more stuff that we do not appreciate; and it is good, it teaches in a way to be understood . I think many of us should be saying this, Thank you.

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

    This was actually the best Arduino tutorial I've watched yet. Great job Lonnie.

  • @oliverpasquesi8068
    @oliverpasquesi8068 9 лет назад

    What servo would you recommend for a medium sized robot arm lifting typical items such as a medium sized screwdriver?
    Thanks.

  • @scootersdenver
    @scootersdenver 7 лет назад

    Thank you for doing the servo video. The audio and video were great and mostly even. This was helpful and worth watching.

  • @snaprollinpitts
    @snaprollinpitts 10 лет назад +1

    the twitchy or what we in the RC field, call glitch, is most likely from a dirty pot or if the battery is low, you may see the output wheel bounce when it hits the end points. and if you want to use them as wheels make sure you get one that has ball bearings, a standard servo was not meant to have that much side load. mike

  • @binbashbuddy
    @binbashbuddy 8 лет назад +3

    It's a servo motor, not a stepper motor, so it can tell you what position it has reached. Instead of relying on a random pause you could loop until it reports it's gotten where you told it to go before telling it to go elsewhere. For instance:
    int pos = 180;
    lonnie.write(pos);
    do {
    // nothing actually happening in this do statement, it's just looping until read says it's reached where we want it to be
    }while(lonnie.read() != pos);
    lonnie.write(0);

  • @TheOriginalBadger
    @TheOriginalBadger 6 лет назад

    Ok, you can connect up to 12 servos to a board. Do all 12 servos respond to the same command, or can they be programmed to operate independently of each other, in either sequential or random order?

  • @robertbegleyrealtor951
    @robertbegleyrealtor951 8 лет назад

    I'd like to just hook up a battery pack like the one you used directly to a continuous rotation servo. Will that work?? I'm trying to simply make a slow moving rotation motor for an art project. Thank you!

  • @anshultripathi5056
    @anshultripathi5056 9 лет назад

    Hi,
    I'm working on a potentiometer controlled 3 servo robotic arm and I needed some advice. Firstly, should I go for standard size servos or micro servos, taking into consideration the fact that the arm isn't designed for heavy payloads. And secondly, should I go for an external power supply or will an arduino uno be able to manage it successfully?

  • @blazingangel623
    @blazingangel623 9 лет назад

    Awesome video! I'm working on a exoskeletal rig for a research project, and am trying to learn about servos so I can build an exoskeletal enhancement for the arm to increase weightlifting ability. What size microcontroller and servo/servos would you recommend and where is the best place to get them?

  • @arturoperdomo2134
    @arturoperdomo2134 9 лет назад

    I have the same setup but as soon as I apply voltage to the servo it begins to overheat. Any ideas on what it could be?

  • @toddleshane
    @toddleshane 8 лет назад +4

    That lens coffee mug messed with my head.... can't focus on arduino project now.... :P

  • @amirulridhuan5286
    @amirulridhuan5286 8 лет назад

    i want to ask some silly question, can i just use 5v power supply from arduino board, because my servo not working using that voltage or just my servo had a problem?

  • @Mr2751984
    @Mr2751984 9 лет назад

    thanks mate> i have same problem with servo that can't drive correct position what do you recommend change it or what>> thax again for video

  • @an_what
    @an_what 6 лет назад

    How would you add a motion sensor for say if I wanted to use this in a prop so it would move then stop after a few seconds

  • @devadut3943
    @devadut3943 7 лет назад

    Can I control multiple servos individually with one servo? Please let me know

  • @dinkmartini3236
    @dinkmartini3236 7 лет назад

    People who share make the world a better place!

  • @colepeterson5392
    @colepeterson5392 8 лет назад

    got a new servo, rated up to 6v and I used your exact setup, yet the servo will not stop jittering and its inaccurate. what am i doing wrong? thanks.

  • @berkcan3475
    @berkcan3475 8 лет назад

    that video. it is awesome thank you so much it is very helpful I especially wanted to see power of it and your demonstration is so good, I want to ask a question is mg996r as powerful as you try to stop with your hand

    • @imgonnapackit
      @imgonnapackit 8 лет назад +1

      Thanks for the kind words. I do not have experience with the MG996 unfortunately. I guess you could compare the torque ratings for the two.

    • @berkcan3475
      @berkcan3475 8 лет назад

      Garage Flips
      thanks, I saw that they are same and I have 2 questions, does it drain electric so much if something blocking it to go an angle and does it consume energy in delay parts of code?

  • @sonicbrush
    @sonicbrush 9 лет назад

    Greetings, Lonnie. First of all, I think your tutorials are clear, concise and easily understood. I have looked a great number of hours online for a solution to my difficulty. I'm trying to program my arduino to control a continuous servo and a standard servo together in one arduino uno. I can make them work individually one at a time and no problems or conflicts. But when I put them together in one sketch I run into errors. I may have a syntax problem. I'm hoping you you could shed some light. I'm trying to control a camera slider with a Spring RC 4315R 360 servo and clicking the button on a wired intervalometer (plugged straight to the camera) with a standard micro servo. I'm very new to arduino and servos that I fear i might do damage (over-voltage) to my camera and the intervalometer, for that matter, if I make the arduino click the camera electronically from its output pins. That's why I think a mechanical click will be safer. I'm aware there's a variety of ways to skin this cat. I copied these codes from other generous posters online and have tweaked the numbers to fit my purpose and they work good individually.
    Slider 360 servo code:

    • @sonicbrush
      @sonicbrush 9 лет назад

      #include
      Servo Ron2; // create servo object to control a servo
      // twelve servo objects can be created on most boards
      int pos = 0; // variable to store the servo position
      void setup()
      {
      Ron2.attach(8); // attaches the servo on pin 8 to the servo object
      }
      void loop()
      {
      for(pos = 180; pos =0; pos-=1) // goes from 20 degrees to 0 degrees
      {
      Ron2.write(pos); // tell servo to go to position in variable 'pos'
      delay(300); // waits 1ms for the servo to reach the position
      }
      }

    • @sonicbrush
      @sonicbrush 9 лет назад

      #include
      Servo Ron1; // create servo object to control a servo
      // twelve servo objects can be created on most boards
      int pos = 0; // variable to store the servo position
      void setup()
      {
      Ron1.attach(9); // attaches the servo on pin 9 to the servo object
      }
      void loop()
      {
      for(pos = 0; pos =0; pos-=1) // goes from 180 degrees to 0 degrees
      {
      Ron1.write(87); // tell servo to go to position in variable 'pos'
      delay(65.9); // waits 15ms for the servo to reach the position
      }

  • @Binetsu39
    @Binetsu39 7 лет назад

    Hello, I was curious when I do the sweep test, I keep getting the Error compiling for board, Im using a 5v trinket, and I've installed the Soft Servo into my library so it should be there. Help!

  • @MohamedSalah-lv5tx
    @MohamedSalah-lv5tx 9 лет назад

    Hello
    I have a request , could you please learn us how to record servo position used potentinometer

  • @yetisac9882
    @yetisac9882 9 лет назад +1

    hey, i want to be able to hook up a receiver and use a servo to go 180 in one direction when a button on a remote is pushed, then the opposite direction when pushed again. can anyone help pls?

  • @martinwhitehurst9893
    @martinwhitehurst9893 9 лет назад

    Hey, how many servos could i hook up to the arduino your using on the bread board. ???

    • @SuperLefty2000
      @SuperLefty2000 9 лет назад

      Only one but if you want to use it for several servos and stepper motors you can buy this extra shield < www.adafruit.com/products/1411 >

    • @martinwhitehurst9893
      @martinwhitehurst9893 9 лет назад

      Ok thank you, do I need to program this extra sheild ? I'm just starting out in the arduino world.

    • @SuperLefty2000
      @SuperLefty2000 9 лет назад

      Martin Whitehurst No, this shield just adds some extra Input, Output and pwm pins to your Arduino. Please note this shield only works for these Arduinos: Uno, Leo, Mega, ADK. It won't work for Arduino Nano as it is too big for Nano.

  • @ArcanePath360
    @ArcanePath360 8 лет назад

    I just bought a 1501mg analogue HD and am now finding Arduino won't power it for more than a few seconds, even though it says it runs at 4.8 volts, but I'm guessing the MA draw is too much. Now I'm stuck trying to find a 6V adapter which allows around 2500mA (stall torque). They don't seem to make them over 1A!

  • @puiyeel
    @puiyeel 10 лет назад

    Hi I would like to know how to connect more then one of those mg995 servos, seems to have some power issues~ thanks.

  • @philnewman1110
    @philnewman1110 8 лет назад

    Hi Lonnie, great video, very useful for me as i am trying to build a four gate level crossing for my railway layout. I have four Hobbyking HK15178 servos and a mains (240volt) as i am in the UK to six volt DC power supply rated at one amp. can you tell me how i can operate the crossing gates from a switch controlled by my Arduino Mega 2560?
    Cheers Phil

  • @mustafakenany1310
    @mustafakenany1310 10 лет назад +1

    the servo you use its 180 degree or 360 degree

  • @thewoodforge2563
    @thewoodforge2563 10 лет назад +1

    how do you open the sample sketch?

  • @mat-ventures
    @mat-ventures 7 лет назад

    How do you modify it to go further than 180 degrees?

  • @gonechanakya2056
    @gonechanakya2056 9 лет назад +1

    hi someone pls hlp me.... im using MG995 servo.... irrespetiv of the program i give.... it in rotating in steps of 1 degree only....the problem is same both in case of arduino and ATMEGA16..... kindly hlp me..... im confused whether the motors are faulty r else they require any special pluse ...
    .

  • @techmad2808
    @techmad2808 8 лет назад

    do we need a bread board for sure can we connect it directly i have 3 servos do i need 3 power supplies

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      you can use superglue as long as the wires are touching eachother.

  • @NOBOX7
    @NOBOX7 9 лет назад

    nice demo thanks for showing how some servos just jitter , i also seen servo that could only do like 100 deg of movment or something so maybe if you tried 20/160

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

    Hold up, what’s on that mug I can’t see it on my phone ???

  • @Sparooga
    @Sparooga 9 лет назад +1

    OMG where did you get that awesome cup BRO????:

    • @rossmckechnie4491
      @rossmckechnie4491 9 лет назад

      Gunter I'm glad you switched the camera to your face while drank from it other wise we would have never saw it.

    • @garagegeekguy
      @garagegeekguy  9 лет назад

      Gunter My wife got it for me from ThinkGeek I believe.

    • @garagegeekguy
      @garagegeekguy  9 лет назад

      Gunter My wife got it for me from ThinkGeek I believe.

    • @garagegeekguy
      @garagegeekguy  9 лет назад

      Gunter My wife got it for me from ThinkGeek I believe.

    • @Sparooga
      @Sparooga 9 лет назад

      Lonnie Honeycutt That is so awesome i want that cup so much it is the coolest cup ever. It sort of looks like a camera or something omg so cool man

  • @kevinpallado6726
    @kevinpallado6726 8 лет назад

    sir i got problem with my servo it doesnt rotate back after 180 degrees , how can i fix this ? after it reaches to 180 it rattles i bbadly need help hope to reply as fast sir my 1st time to use arduino

  • @MohamedSalah-lv5tx
    @MohamedSalah-lv5tx 8 лет назад

    Thank you Lonnie
    Could you please tell me how I can write code to control 2 servo to run at the same time and same deg. using for function .

    • @PantheonVlad
      @PantheonVlad 8 лет назад

      Here is the code that I use for mine: /* Sweep2
      by mechanic37
      www.mechanic37.com
      */
      #include
      Servo A; // create servo object to control a servo
      Servo B; // twelve servo objects can be created on most boards
      int pos = 0; // variable to store the servo position
      void setup()
      {
      B.attach(4);
      A.attach(9); // attaches the servo on pin 9 to the servo object
      }
      void loop()
      {
      for(pos = 0; pos =0; pos-=1) // goes from 180 degrees to 0 degrees
      {
      A.write(pos); // tell servo to go to position in variable 'pos'
      B.write(pos);
      delay(15); // waits 15ms for the servo to reach the position
      }
      }

  • @franciscruz5553
    @franciscruz5553 8 лет назад

    sir what type of arduino was that..?? by the way sir.. your video was great it really enlightened me..

    • @PantheonVlad
      @PantheonVlad 8 лет назад

      The arduino nano

    • @franciscruz5553
      @franciscruz5553 8 лет назад

      sir can i ask one more question.. my servo was just like jumping when all those 3 servos are running on the same time... but if it was only 2 servos there's nothing happen and it run smoothly but when i add another one then it jumps on its own.... so sir what do you think was the problem..?? hope you replied again and thank you sir..

  • @mlgpro8918
    @mlgpro8918 9 лет назад

    what's the name of that arduino

  • @smileybrick9792
    @smileybrick9792 8 лет назад

    HI i have a quotation can you tell me how to make a servo give me the position it in with an ardunio

    • @imgonnapackit
      @imgonnapackit 8 лет назад

      www.arduino.cc/en/Reference/ServoRead
      Command will give you the last position you wrote to the servo.

    • @imgonnapackit
      @imgonnapackit 8 лет назад

      Highly recommend the documentation at arduino.cc It will tell you everything you need to know.

    • @smileybrick9792
      @smileybrick9792 8 лет назад

      thanks you know I want to move the servo with my hand and then get the movement on the pc. I already know how to move it with the pc.

    • @imgonnapackit
      @imgonnapackit 8 лет назад

      +smiley brick oh ok, gotcha. Can't do it.

  • @shashikataria5620
    @shashikataria5620 9 лет назад

    please guys tell how to rotate modified servo motor in clockwise and anticlockwise i mean that i want to rotate the a continuous servo in both direction forward and backward

  • @Mintsel
    @Mintsel 7 лет назад

    how to connect arduino pro minis with servos and led strips?

  • @chaitanyakumarmnv3713
    @chaitanyakumarmnv3713 8 лет назад

    hello sir i had arduino mega .. i want to run 19 servo motors but in arduino there are only 13pwm pins is there any chance to run 19 servo motors for biped robot..

    • @mike0rr
      @mike0rr 8 лет назад

      You don't need the PWM pins to run your servo. Just hook your white (control) wire up to any of the outputs as long as your code has them designated as an output.

  • @zekewillard8703
    @zekewillard8703 8 лет назад +1

    4:02 with the computers usb........port

  • @mustafakenany1310
    @mustafakenany1310 10 лет назад

    hello
    You mean must I use external source of Power to get the Power to servo..
    and If I take power from arduino and give to servo them must I use source power than I use USB

    • @garagegeekguy
      @garagegeekguy  9 лет назад

      You can use either, but make sure the current draw is within the parameters of the Arduino. Small servos are fine.

  • @thomasjaving4489
    @thomasjaving4489 8 лет назад

    I have bought the TowerPro MG995, but I cannot get it to rotate 360 degrees. Do I have to convert it? www.instructables.com/id/Convert-Towerpro-MG995-servo-to-continuous-rotatio/step4/Remove-the-5kOhm-pot/

  • @sunithaardham231
    @sunithaardham231 8 лет назад

    can we connect 5 servos to arduino uno r3 without breadboard

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      +sunitha ardham Do you think the Arduino will be able to power 5 servos at the same time? That should be your first question.

  • @nathanw5747
    @nathanw5747 7 лет назад

    can you make a tutorial where to arduinos are communicating with two hc-12's and 2 nano's 1 servo!.

  • @AbhyudayJackson
    @AbhyudayJackson 8 лет назад

    I have a towerpro mg995
    when I power the Arduino with USB it work fine but when I try with 9v external supply it moves very very slowly
    I m a beginner please help

    • @imgonnapackit
      @imgonnapackit 8 лет назад

      Don't use a 9 volt battery. Cmon man, google it.

    • @AbhyudayJackson
      @AbhyudayJackson 8 лет назад

      I want to use servo in my project to move the ping sensor as head of it
      I am using l293d for DC motors
      but how to power servo
      please can you guide me

    • @AbhyudayJackson
      @AbhyudayJackson 8 лет назад

      I want to use servo in my project to move the ping sensor as head of it
      I am using l293d for DC motors
      but how to power servo
      please can you guide me

    • @imgonnapackit
      @imgonnapackit 8 лет назад

      This is my other account. No I can't, I don't have time sorry.

    • @AbhyudayJackson
      @AbhyudayJackson 8 лет назад

      okay
      can you at least tell me best way to give external power to servo
      thank you for your reply

  • @aydimounir6191
    @aydimounir6191 9 лет назад

    hi, can i get code arduino of servo motor

  • @jasonjavier8503
    @jasonjavier8503 8 лет назад +1

    Sr do you have a code for android control servo motor arduino? Can you make a video?
    For android using android studio

  • @MotorsportCreative
    @MotorsportCreative 8 лет назад

    Lonnie you're the real MVP! Great video!

  • @anindyachakravarty5195
    @anindyachakravarty5195 8 лет назад

    Hi! Great tutorial. I am trying to control multiple (14, to be precise) servos using an Arduino Mega as my school project. I was advised to use a Sensor shield (images-na.ssl-images-amazon.com/images/I/51gzXjEx9zL.jpg), which, I believe has its own power supply provision. Thing is I can't figure out how to power the servos via this shield? I have seen a lot of other tutorials and all those use a breadboard, but I don't want that. Could you please explain (here) or perhaps point me to a website or something that explains this?Thanks.

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

    ardunio nano ya toplam kaçtane servo motor takılır ?

  • @AKSnowLeopard
    @AKSnowLeopard 8 лет назад

    I got my servo working after rewriting the commands when you rewrote the sketch, but i'm not sure why it didn't work with the first sketch at the beginning of the video. And thank you for this video, it made much more sense than the book I was using.

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      +D. Duncan To be sure I understand - you are saying your servo wouldn't work with the example sketch, but it did work when you used the code like I wrote in the video?

    • @AKSnowLeopard
      @AKSnowLeopard 8 лет назад

      +Lonnie Honeycutt that's absolutely right.

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      +D. Duncan Was there an error message?

    • @AKSnowLeopard
      @AKSnowLeopard 8 лет назад

      +Lonnie Honeycutt No error which is what confused me. Either way, the servo began functioning so I'm good. I just need more experience programming the arduino to understand any issues I may have in the future.

  • @maggiekwan6700
    @maggiekwan6700 8 лет назад

    that a ESP board, am i right?

    • @maggiekwan6700
      @maggiekwan6700 8 лет назад

      ohhhh... never mind, it looked like one, though

  • @richogborne
    @richogborne 9 лет назад

    Thanks for this tut, simple and well paced.

  • @frodobaggins6450
    @frodobaggins6450 10 лет назад +1

    will a futaba s3003 work?

    • @frodobaggins6450
      @frodobaggins6450 10 лет назад +1

      yes it does.. i tried.

    • @stevenyang7942
      @stevenyang7942 9 лет назад

      Why are you replying to yourself?

    • @frodobaggins6450
      @frodobaggins6450 9 лет назад

      Steven Yang so people can know that it also works with futaba s3003.

    • @jnicoulakos
      @jnicoulakos 9 лет назад

      Steven Yang I think rather than wait for a reply he simply tried it for himself. :) lol I have done that before.

  • @wyattmichael1541
    @wyattmichael1541 9 лет назад +1

    Good video Lonnie..thanks. Just getting started. Doing mechanical Pinball machine Mods and needed this

  • @jasonmayne1
    @jasonmayne1 9 лет назад

    Great video! Thank you for posting. I'm buying an Arduino especially to learn servos. Did a giant 4x8' plywood sheet holiday card and trying to make a moving light saber on darth vader... long story, but I think a servo would work based on your demo given the torque... Thanks again. Jason

    • @chartle1
      @chartle1 9 лет назад

      +Jason Mayne Is this life size? That's going to have to be a pretty big servo.

    • @jasonmayne1
      @jasonmayne1 9 лет назад

      Hi - the saber is 3 feet long, so I have 4 little pulleys I was going to use to take off some of the weight. Attaching servo to the bottom center of a 5-gal bucket with a string tied to the outer edge on the back side... string will get longer/shorter as the bucket bottom turns. Attaching string over top of board to saber... Unless you have a suggestion?

    • @garagegeekguy
      @garagegeekguy  9 лет назад

      +Jason Mayne what servo you using? What is the power source for the servo?

    • @jasonmayne1
      @jasonmayne1 9 лет назад

      I ordered a BotBrain CRS Continuous Rotation Robotics Servo from Amazon and should be in the mailbox now, and a Arduinox Uno Rev 3. Was thinking I can wire it with power, no prob; bought adapter.

    • @garagegeekguy
      @garagegeekguy  9 лет назад

      +Jason Mayne Based on what I read, it looks like you should shoot for around 6 volts. I wouldn't power it straight off the arduino board with that kind of torque.

  • @dwcobb43
    @dwcobb43 8 лет назад

    thank you very much, I have been looking at Arduino to add animation to my model railroad and you made this very understandable

  • @kiby4912
    @kiby4912 8 лет назад

    I'm trying to connect my servo with my Arduino nan9

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      +Isaac Chan Don't try, just friggin do it man.

  • @YS-zg6lg
    @YS-zg6lg 10 лет назад +1

    great video! amazing! you made the programming so easy!

  • @arabiccompprograming5161
    @arabiccompprograming5161 7 лет назад

    Hello, all good about Arduinos and servos and other components. good stuff.

  • @paulynejeremiahalcosdipasu6661
    @paulynejeremiahalcosdipasu6661 8 лет назад

    why are you rotating the servo .. the motor MIGHT deteriorate! :o

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      +Paulyne Jeremiah Alcos Dipasupil You are kidding, right?

  • @will01r
    @will01r 10 лет назад

    Good tutorial, very well presented.

  • @staaaajn6311
    @staaaajn6311 9 лет назад

    great video! i have a project with servos in mind. I think I know everything I need to know after this video! Thanks a lot.

  • @yashshah8444
    @yashshah8444 7 лет назад +3

    Looking good Walter White

    • @garagegeekguy
      @garagegeekguy  7 лет назад +1

      I subbed to your channel just in case you are ever brave enough to show your face.

    • @yashshah8444
      @yashshah8444 7 лет назад

      Oh no sir I cannot coz I look like Jesse Pinkman
      Btw very nice video....helped me complete my project

  • @stevenyang7942
    @stevenyang7942 10 лет назад

    Wow. I thought you needed a potentiometer and worse program that is more complicated. ( I looked at the ones that were examples.

  • @MCsCreations
    @MCsCreations 7 лет назад

    Really nice, man. :)

  • @jonnywilson375
    @jonnywilson375 9 лет назад

    Superb video!
    Thank you.

  • @jorgewashington2981
    @jorgewashington2981 8 лет назад +1

    Awesome vid. Thank you.

    • @garagegeekguy
      @garagegeekguy  8 лет назад

      +Jorge Washington Your welcome, glad you enjoyed. Thanks for taking the time to comment.

  • @yttrium6575
    @yttrium6575 9 лет назад

    thanks for the video sir, i'm planning to build a different kind of robotic arm for my first real project using arduino, and this video help me on understanding type and use of servo :D

  • @maxiewawa
    @maxiewawa 9 лет назад

    9:30 he's drinking out of a camera lens

  • @papasmurf7684
    @papasmurf7684 9 лет назад

    Thanks so much !This helped me out a lot!

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

    Very well put even I understood that top man .

  • @iperpituallocomotionz7751
    @iperpituallocomotionz7751 8 лет назад

    great info lonnie thanx liked and subbed

  • @natgrant1364
    @natgrant1364 8 лет назад +1

    Thanks for the video! You've earned a new subscriber. :)

  • @kennethmanheim265
    @kennethmanheim265 7 лет назад

    360°???????????

  • @zach2047
    @zach2047 7 лет назад

    didany1see the cat??!!

  • @nmeprint4559
    @nmeprint4559 7 лет назад

    well done thanks very much , got everything cleared now
    great job

  • @an_what
    @an_what 6 лет назад

    Thank you for this upload

  • @MrMr999Mr
    @MrMr999Mr 11 лет назад

    Thanks for the video.

  • @yannp891
    @yannp891 9 лет назад

    Excellent cours.
    merci

  • @suelinerr
    @suelinerr 8 лет назад

    Thanks for sharing

  • @ramyacas1369
    @ramyacas1369 10 лет назад

    thank very much for the info...helps me a lot men...:D

  • @zihaobao1619
    @zihaobao1619 8 лет назад

    Awesome video. ^ ^

  • @steve_ancell
    @steve_ancell 7 лет назад

    Servo control is quite a fun project. I did something similar recently with the Arduino UNO and Microsoft VS C#.
    ruclips.net/video/NdAEfewrcoE/видео.html

  • @magicmedia2412
    @magicmedia2412 6 лет назад

    you're awesome!

  • @BruceLee-yt4cx
    @BruceLee-yt4cx 8 лет назад

    can someone nik down to the servo and get us some smokes and a lighter

  • @brucekim5166
    @brucekim5166 6 лет назад

    Thank you

  • @kiby4912
    @kiby4912 8 лет назад

    nano*

  • @khuedo5437
    @khuedo5437 8 лет назад

    DAT BED DOE

  • @patriotir
    @patriotir 8 лет назад

    what if I'm using a 9v battery how should I determine which resistor I should use

  • @AbhyudayJackson
    @AbhyudayJackson 8 лет назад

    I have a towerpro mg995
    when I power the Arduino with USB it work fine but when I try with 9v external supply it moves very very slowly
    I m a beginner please help

  • @teoscott1
    @teoscott1 9 лет назад

    Hi im using servo with potentiometer on arduino. I have an issue using a Power hd 1501 mg analog servo which jitters too much and have electronic noise. Can someone help me?
    Even if i use the sweep servo programming on arduino ide it will jitter a lot.
    I am powering the servo with arduino's 5 volts or 4 AA batteries.

  • @patrickstaresina3902
    @patrickstaresina3902 7 лет назад

    Excellent video. Thanks.

  • @staaaajn
    @staaaajn 9 лет назад

    great video! i have a project with servos in mind. I think I know everything I need to know after this video! Thanks a lot.

  • @JohnClulow
    @JohnClulow 8 лет назад

    excellent video. Thanks !!

  • @iperpituallocomotionz7751
    @iperpituallocomotionz7751 8 лет назад

    great info lonnie thanx liked and subbed