Drive CD-ROM Stepper Motor with Arduino + L293d shield

  Рет қаралды 232,495

Circuit Magic

Circuit Magic

Күн бұрын

Пікірлер: 63
@hugogzz590
@hugogzz590 9 жыл бұрын
este es uno de los mejores videos, gracias ,,, excelent video, thanks
@charlissantos7386
@charlissantos7386 9 жыл бұрын
how many volts is being fed Motor with Arduino + L293d shield
@shahzaib715
@shahzaib715 3 жыл бұрын
5v
@Dancopymus
@Dancopymus 8 жыл бұрын
Hi friend! This Arduino code also works on an IC L293D (no shield)? How would the connections between Arduino and L293D? Thank you
@Boytechxito
@Boytechxito 8 жыл бұрын
Hi dear, considering the test performed, you have created some project using this shield with arduino such as a mini cnc? I have the same shield but have problems that most programs use GRBL apparently uses other pins ..
@jamestaverne2201
@jamestaverne2201 10 жыл бұрын
does your h-bridge chip get really hot? I did what you did but my l293d motor driver got very hot. It hurt to touch and it was only on for a couple seconds.
@AndreiDanielBotezatu
@AndreiDanielBotezatu 9 жыл бұрын
+James Taverne Yes
@TechBuild
@TechBuild 8 жыл бұрын
You should use L298N motor driver as it can be connected to a heatsink and I recommend you to use that.This IC is better to use to drive stepper motors due to their high current consumption.
@TechBuild
@TechBuild 7 жыл бұрын
The shield uses a 74HC595N shift register which reduces the number of pins used from the Arduino board.
@kuldeeppanchalblog
@kuldeeppanchalblog 8 жыл бұрын
thanks bro, owesome project, i have made it, but i want to make cnc machine, can you suggest any easy and good video with complete guide
@leonardochile8735
@leonardochile8735 8 жыл бұрын
Excellent video, you have the data of this engine shed . What voltage and current work ?. Greetings from Chile.
@leonardochile8735
@leonardochile8735 8 жыл бұрын
See : robocup.idi.ntnu.no/wiki/images/c/c6/PL15S020.pdf
@Jeune_Force90
@Jeune_Force90 6 жыл бұрын
What is the voltage and current in external power to shield for run 2stepper and servo motors
@AdryannMCOfficial
@AdryannMCOfficial 8 жыл бұрын
Hy, i have some problems.... i try to make the same things you do. But my step motor ar "try" to rotate when i upload the code... why ? I make the same things you do...
@AnilDhan123
@AnilDhan123 9 жыл бұрын
I am using a 9V battery with an easy driver to move the stepper of an old dvd rom. But it's not working, is it due to the voltage?
@AndreiDanielBotezatu
@AndreiDanielBotezatu 9 жыл бұрын
+Anil Dhan It's due the current. A 9V battery can't drive a stepper motor,use a 12V power supply or a usb phone charge which provide at least 500mA of current.
@AnilDhan123
@AnilDhan123 9 жыл бұрын
Thanks alot man! IT WORKS!!!! I love you for this man!! i cut an external hard disk adaptor, which provided me 12V along with a good amperage of around 2A. Whch is probably why the motor gets hot a lil faster. But i will be running this current through 3 stepper motors. Hopefully that will fix things. Or probably I will just attach a resistor. Any idea how much of a resistor i can use?
@AndreiDanielBotezatu
@AndreiDanielBotezatu 9 жыл бұрын
From my knowledge i know motor heat up when are in heavy charge. They "suck" how much current need,for exemple from 2A use just 1.4 or 1.7A.
@GabrielaElisabethHuell
@GabrielaElisabethHuell 8 жыл бұрын
+Andrei-Daniel Botezatu did you get a reply??? what is the max current ( in Amper) can be apply?..
@serdar-ors
@serdar-ors 9 жыл бұрын
what is the sensitivty of this mechanism in milimeter .
@vanlongle2071
@vanlongle2071 8 жыл бұрын
How many volts power supply? L293d
@peerlessrecords6236
@peerlessrecords6236 2 жыл бұрын
first: cool video well explained. I'm thinking of using this mechanism for an animatronic puppet which has to shake its head at a quite high speed. How fast can this thing move? Can it create a fast shaking motion like back and forth the full length in like 200ms? I don't wanna sacrifice the only dvd burner I have left to find out it won't work soo ^^
@abinaustin
@abinaustin 9 жыл бұрын
hi i have a em 319 stepper motor but i dont know its specs. can you help
@varietedigital7567
@varietedigital7567 8 жыл бұрын
Hi buddy , how do I know what is the 0x,0y points in the little table of my CNC or hoe do I get the position??
@himalaykolavada
@himalaykolavada 8 жыл бұрын
sketch_nov21c:13: error: 'Micrsostep' was not declared in this scope Serial.println(“Micrsostep steps”); ^ exit status 1 stray '\223' in program This type of error i got while uploading ur code. reply me asap
@michalsebek2089
@michalsebek2089 7 жыл бұрын
Himalay Kolavada Try to use quotes from your keyboard (").
@felipediehlbernardo5008
@felipediehlbernardo5008 7 жыл бұрын
pra quem não conseguiu, arrumei o código, agora ele está copilando. é só copiar esse código ai em baixo e vai da certo. #include // Motor with 200 steps per rev (1.8 degree) // to motor port #1 (M1 and M2) AF_Stepper motor(200, 2); void setup() { // set up Serial library at 9600 bps Serial.begin(9600); Serial.println("Stepper test!"); motor.setSpeed(400); // 50 rpm } void loop() { Serial.println("Micrsostep steps"); motor.step(50, FORWARD, MICROSTEP); motor.step(50, BACKWARD, MICROSTEP); motor.step(100, FORWARD, MICROSTEP); motor.step(100, BACKWARD, MICROSTEP); motor.step(200, FORWARD, MICROSTEP); motor.step(200, BACKWARD, MICROSTEP); motor.step(250, FORWARD, MICROSTEP); motor.step(250, BACKWARD, MICROSTEP); delay(100); motor.step(3, FORWARD, MICROSTEP); motor.step(3, BACKWARD, MICROSTEP); delay(1000); }
@Ramnath55
@Ramnath55 6 жыл бұрын
nice video....more than that the voice.
@ronaldc8634
@ronaldc8634 5 жыл бұрын
the voice is amazing
@hassankhurramtech
@hassankhurramtech 4 жыл бұрын
Microsoft SAM Voice,
@DuyNguyen-vu4wm
@DuyNguyen-vu4wm 9 жыл бұрын
hi, Im trying. anh it suppoted! Arduino: 1.6.3 (Windows 8.1), Board: "Arduino Uno" sketch_jun21a.ino:8:1: error: stray '\' in program sketch_jun21a.ino:8:1: error: stray '\' in program sketch_jun21a.ino:13:1: error: stray '\' in program sketch_jun21a.ino:13:1: error: stray '\' in program sketch_jun21a.ino: In function 'void setup()': sketch_jun21a.ino:8:17: error: 'u201cStepper' was not declared in this scope sketch_jun21a.ino:9:18: error: expected ')' before numeric constant sketch_jun21a.ino: In function 'void loop()': sketch_jun21a.ino:13:17: error: 'u201cMicrsostep' was not declared in this scope Error compiling. This report would have more information with "Show verbose output during compilation" enabled in File > Preferences. pleas help me!
@attitudecreation4842
@attitudecreation4842 7 жыл бұрын
load krna pr ya error show kr rhai audrino software...
@nikhil.nikhil
@nikhil.nikhil 5 жыл бұрын
2 steper motor ko kitni supply de external me
@saranashjain794
@saranashjain794 8 жыл бұрын
i try to make 3 axis cnc machine using 3 l293d ic but it cause lot of difficulties in code i also try grbl controller still not able to make it pls help or tell me to how to use grbl controller with l293d ic
@ruythermaximo4169
@ruythermaximo4169 10 жыл бұрын
What is the sequence of steps of this engine?
@Vv-xt9rz
@Vv-xt9rz 7 жыл бұрын
sir it showing error compiling for Arduino/Genuino Uno. exit status 1 Error compiling for board Arduino /Genuino Uno. please help
@AdityaKumar-iy7ny
@AdityaKumar-iy7ny 8 жыл бұрын
is stepper motor run directly by battery
@hyderkhan7399
@hyderkhan7399 8 жыл бұрын
No.
@AdityaKumar-iy7ny
@AdityaKumar-iy7ny 8 жыл бұрын
why???
@hyderkhan7399
@hyderkhan7399 8 жыл бұрын
it is a software motor.
@AdityaKumar-iy7ny
@AdityaKumar-iy7ny 8 жыл бұрын
ok thank you so much
@sanjaykumarojha2394
@sanjaykumarojha2394 8 жыл бұрын
how can i increased the length of servo motor of dvd driver
@samuelmara9721
@samuelmara9721 8 жыл бұрын
hey the programming is giving me a error"AFMotor.h: No such file or directory compilation terminated."
@zyzzthetics7
@zyzzthetics7 8 жыл бұрын
You have to download the adafruit library in order to use the shield. Just search on AFMotor library install on youtube.
@Abhishek-el5rx
@Abhishek-el5rx 8 жыл бұрын
my program is uploaded but stepper motor is not running what to do
@Abhishek-el5rx
@Abhishek-el5rx 8 жыл бұрын
stepper motor showing continuity and working with battery
@ahadulislam8891
@ahadulislam8891 9 жыл бұрын
Make a video How to control HDD motor, is it possible to use hdd motor to make a quadcopter
@TheEnragedGamer
@TheEnragedGamer 8 жыл бұрын
it could be but its cheaper to buy quadcopter motors
@georgelefter6965
@georgelefter6965 9 жыл бұрын
Help me please.... :(( Where i find software for this hardware?Thank you!
@allaboutiosgames3093
@allaboutiosgames3093 9 жыл бұрын
George lefter u can find it from www.arduino.cc then search for dwnload or IDE
@cucciolo182
@cucciolo182 10 жыл бұрын
Love it (y) 3:48 Where?
@Circuitmagic
@Circuitmagic 10 жыл бұрын
Hi, here is the link for arduino code. www.circuitmagic.com/arduino/drive-cd-rom-stepper-motor-with-arduino-l293d-shield/
@_anujpatidar
@_anujpatidar 7 жыл бұрын
Aedunio kha se milega bhai jara bta diya kro
@abdalrahmanbadawy5985
@abdalrahmanbadawy5985 7 жыл бұрын
Ineed the data sheet of that stepper motor
@tubeDude48
@tubeDude48 8 жыл бұрын
Where is the AFMotor.h file in Arduino?
@MrInnovative
@MrInnovative 8 жыл бұрын
for this you have to add AFMotor library
@selimcankavvas5358
@selimcankavvas5358 7 жыл бұрын
your code give me stray 342 error how can ı fix it pls help me
@oliebm228
@oliebm228 9 жыл бұрын
how to position control thank
@TheKeonkz
@TheKeonkz 7 жыл бұрын
This is not CD-ROM stepper, but this is DVD-ROM stepper, it's different!
@alexey8879
@alexey8879 9 жыл бұрын
good day moiti share code
@arttechz8330
@arttechz8330 5 жыл бұрын
On link
@AdityaKumar-iy7ny
@AdityaKumar-iy7ny 8 жыл бұрын
please please please reply
Take out DVD Drive Stepper motor mechanism + Wiring + Test run
8:53
Mr Innovative
Рет қаралды 496 М.
How to Run a Stepper Motor with an Arduino + L293D IC
3:31
Circuit Magic
Рет қаралды 184 М.
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
How to Run Stepper Motor with Arduino using L298N Driver Module
3:07
How to control DC motor with L298N driver and Arduino
5:48
Circuit Magic
Рет қаралды 444 М.
Hack old CD-ROMs into a CNC Machine - Part 1: The Hardware
5:13
Micro Mini CNC Plotter - Part 2 - Testing Hardware and Software
2:59
Clayton Darwin
Рет қаралды 166 М.
Mini Desktop Plotter Made From CD/Floppy Drives
5:37
Mario
Рет қаралды 272 М.
How to Make a CNC Drawing Machine at home
23:42
Creative Channel
Рет қаралды 1,6 МЛН
Plotter made of two old CD drives, a servo and a Raspberry Pi
6:48