Arduino Tutorials
Arduino Tutorials
  • Видео 5
  • Просмотров 276 326
Dual Servo Motor Movement with Arduino Uno
Get the CODE HERE: www.robotoid.com/appnotes/arduino-operating-two-servos.html
Need more help with this tutorial, visit: www.robotoid.com/appnotes/arduino-operating-two-servos.html
Thank you for your support. Please Subscribe. I will not have videos in a while
Просмотров: 1 486

Видео

Making a DC Motor Spin | Arduino Uno TutorialMaking a DC Motor Spin | Arduino Uno Tutorial
Making a DC Motor Spin | Arduino Uno Tutorial
Просмотров 130 тыс.8 лет назад
How to Set Up BlueFruit EZ-Link on an Arduino and Pair via Bluetooth with Windows (7)How to Set Up BlueFruit EZ-Link on an Arduino and Pair via Bluetooth with Windows (7)
How to Set Up BlueFruit EZ-Link on an Arduino and Pair via Bluetooth with Windows (7)
Просмотров 2,6 тыс.8 лет назад
This is another arduino tutorial for you viewers who are interested.
Servo Control With Push ButtonServo Control With Push Button
Servo Control With Push Button
Просмотров 141 тыс.8 лет назад
Get the CODE HERE: www.arduino.cc/en/Tutorial/Sweep Please share with your classmates and educators/teachers. See you next time.
Arduino Uno Tutorial_1 | Pushbutton (With Code)Arduino Uno Tutorial_1 | Pushbutton (With Code)
Arduino Uno Tutorial_1 | Pushbutton (With Code)
Просмотров 1,3 тыс.8 лет назад
This is a friendly educational tutorial on how to do the Pushbutton lab from Arduino's Website: www.arduino.cc/en/tutorial/pushbutton Please Like this video, subscribe, and share this with your school. See you in the next video. Here is the code if you need help: int ledPin = 13; // choose the pin for the LED int inPin = 7; // choose the input pin (for a pushbutton) int val = 0; // variable for...

Комментарии

  • @slob5041
    @slob5041 2 месяца назад

    great music

  • @DatFunnyPerson
    @DatFunnyPerson 3 месяца назад

    I want it to move like 10 degrees but only if the button is held down any idea?

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

    I like this tutorial It works, Thanks!

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

    thank u so muh dude hats off it helped me with my drone project

  • @NightWatch-oq9ki
    @NightWatch-oq9ki 7 месяцев назад

    code

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

    very wrong, sorry you're not using the arduino for shit here just power 🙄

  • @MidnightMaker
    @MidnightMaker Год назад

    The code shown does not allow for use of a button to activate the sweep.

  • @exumbravirtutis6623
    @exumbravirtutis6623 Год назад

    Its not working for me. I push the button and nothing happens. I copied your code too. I’m using a servo, 4-pin pushbutton, and a small breadboard.

  • @fabiorota9661
    @fabiorota9661 Год назад

    u suck

  • @xbinxpurp6118
    @xbinxpurp6118 Год назад

    I’m trying to make a slot load drive I need a motor to slide a tray in and a servo to program a lift up and lift down when a button is pressed preferably all progress and eject and insert from same button to function forward then reverse

  • @jensonhartmann3630
    @jensonhartmann3630 Год назад

    Welcome...to... Jurassic Pahk

  • @vinitarai6731
    @vinitarai6731 Год назад

    Disgustingly nonsense he just made a 1 min task a 6 min task ridiculous

  • @johnrobinson1140
    @johnrobinson1140 Год назад

    This video has no tutorial qualities whatsoever

  • @中華基督教會馮梁結紀

    Would you please teach us how to connect a 12V DC motor to an Arduino uno? Moreover, can we connect a 3V DC motor and a 6V DC motor to the same Arduino uno? Thank you for your kind concern and teaching.

  • @lookupverazhou8599
    @lookupverazhou8599 Год назад

    Please explain how you generate enough current with an arduino pinout.

  • @ggvinocio
    @ggvinocio Год назад

    #include <Servo.h> Servo myservo; // create servo object to control a servo int potpin = 0; // analog pin used to connect the potentiometer int val; // variable to read the value from the analog pin void setup() { myservo.attach(9); // attaches the servo on pin 9 to the servo object } void loop() { val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023) val = map(val, 0, 1023, 0, 180); // scale it to use it with the servo (value between 0 and 180) myservo.write(val); // sets the servo position according to the scaled value delay(15); // waits for the servo to get there } #include <Servo.h> Servo myservo; // 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() { myservo.attach(9); // attaches the servo on pin 9 to the servo object } void loop() { for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees // in steps of 1 degree myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } for (pos = 180; pos >= 0; pos -= 1) { // goes from 180 degrees to 0 degrees myservo.write(pos); // tell servo to go to position in variable 'pos' delay(15); // waits 15ms for the servo to reach the position } }

  • @ZIXZIX02
    @ZIXZIX02 Год назад

    codes?

  • @Peter-kx6fi
    @Peter-kx6fi Год назад

    chujowy poradnik chuja widac

  • @minskie
    @minskie Год назад

    How can you call this a tutorial when you don’t even explain anything instead overdubbing your video with lame music?!

  • @Vermilion909
    @Vermilion909 Год назад

    that's not how you put a resistor on breadboard, it's on the same line :)

  • @carlosmarciaga1873
    @carlosmarciaga1873 2 года назад

    that song threw me off lol

  • @kutay_ozkeskin
    @kutay_ozkeskin 2 года назад

    no one asked to do this with toggle switch.. I have a poject to make it spin from 0 to 180 degree and come back to 0 when the toggle swich is ON Just once, no loop.. When i off the switch, i want it to stand still and when i turn on again, i want it to do the same action. Is this possible ?

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

      everything is possible!🎉

  • @Ahmed.Kachade
    @Ahmed.Kachade 2 года назад

    just a note that the resistor that you put there in circuit has no function.

  • @Sashalexandros
    @Sashalexandros 2 года назад

    why transistor and resistor? Why not just connecty directly?

  • @littlebluetank7899
    @littlebluetank7899 2 года назад

    didnt even specify the components basic mistake man what kind of tutorial is this

  • @mihkailsafonov7853
    @mihkailsafonov7853 2 года назад

    THANK YOU VERY MANY!!!

  • @adnanyanhas7683
    @adnanyanhas7683 2 года назад

    what if i use a bigger motor dc (approx 52000 rpm), what should i do to make it spin?change the resistor?

    • @etetgg1364
      @etetgg1364 Год назад

      Yes, increase ohm

    • @lookupverazhou8599
      @lookupverazhou8599 Год назад

      Any ohms destroys the necessary current to run the motor on an arduino uno.

  • @danielezambelli9745
    @danielezambelli9745 2 года назад

    how can I control 2 servos with one botton?

  • @BMW-E39-DS
    @BMW-E39-DS 2 года назад

    thank u for help

  • @B16Dominoes
    @B16Dominoes 2 года назад

    Cool, I subscribed: )

  • @cactachyon
    @cactachyon 2 года назад

    what type of resistor is that like what amount of ohms please?

  • @TGeliteDJ5959
    @TGeliteDJ5959 2 года назад

    i have made trafick singnel noooooooooooob

  • @TGeliteDJ5959
    @TGeliteDJ5959 2 года назад

    i know

  • @raypi
    @raypi 2 года назад

    Thanks!!!!!!!!!!!

  • @aagamsheth4051
    @aagamsheth4051 2 года назад

    Tysm 😊

  • @umjamali6120
    @umjamali6120 3 года назад

    How clever😎

  • @hardikpulipati4334
    @hardikpulipati4334 3 года назад

    Where did u buy all the components

    • @PlayusTheGreat
      @PlayusTheGreat 2 года назад

      You can buy them anywhere, Usually I use EBay or banggood

  • @sanirasudeshkuruppu3190
    @sanirasudeshkuruppu3190 3 года назад

    Super I like

  • @yesmylightingsucks
    @yesmylightingsucks 3 года назад

    5v m

  • @royjiun
    @royjiun 3 года назад

    Gan request.. Tombol nya satu bisa buat on off. Tombol ditekan sekali... Servo nyala terus... Ditekan sekali lagi servo mati

  • @cleberantoniodossantossant3133
    @cleberantoniodossantossant3133 3 года назад

    Como faço esse retângulo em pé?

  •  3 года назад

    I love you man!

  • @pranavmucharla3020
    @pranavmucharla3020 3 года назад

    Thanks a lot I’m making an webshooter and this could a cool part of it

  • @BUllstore53
    @BUllstore53 3 года назад

    Where can I get the cod?

  • @bxshlyator
    @bxshlyator 3 года назад

    Thank you!!

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

    Tf this kid doin

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

    WTF

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

    GREAT

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

    Does anyone know if it's possible to connect two servos to one button?? I searched everywhere! Not finding anything😔

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

    You just stole the code from the example. Then you interrupted the power. You wrote no software, nor did you do anything useful. Don't make tutorials if you don't know how to do it. create the servo setup a button pin and pinMode it as INPUT_PULLUP If the button ==LOW, then spin it, else do nothing. Then create a lastbuttonstatus and compare them. Not hard.