Build Your Own Motor Driver
Intro: Build Your Own Motor Driver
Hello everyone,
In this instructable we'll be making our own motor driver using transistors.
In my last attempt to use transistor as motor driver I was unable to control the speed of the motor using it.
But, Thanks to valuable comments from instructables users who suggested me to use PWM pins to control motor speed and to improve the circuit. So, this circuit is able to control motor speed using PWM pins, protect arduino and other electronics from back emf and electrical noise generated by the DC motor.
STEP 1: Gather the Parts
- An Arduino
- A breadboard
- A 220ohm resistor
- A 2N2222 transistor
- A IN4001 diode
- A 0.1 microfarad ceramic capacitor
- A DC motor
- A 9V battery
- Some jumper or hookup wires
STEP 2: Wiring
Hookup all the components according to the circuit diagram shown above.
Why we need a A 0.1 microfarad ceramic capacitor in parallel with the motor?
When DC motors operate they produce a lot of electrical noise, The main cause of this noise is the brushes of the brushed DC motor.
These noise can interfere with the sensors and even impair the micro-controller.
That's why we need a 0.1 microfarad ceramic capacitor in parallel with the motor.
Why we need a IN4001 diode in parallel with the motor?
When the DC motor is turned OFF or current being changed across the motor, The motor generates Back EMF.
This back emf can damage electronics or can cause data loss.
To counter this we need a IN4001 diode in parallel with the motor.
STEP 3: The Code
Upload the following code to arduino.
The following code runs the motor at a Higher speed for 10 sec and then lowers the speed for the next 10 sec.
int MotorPin = 10;
void setup()
{
pinMode(MotorPin, OUTPUT);
}
void loop()
{
analogWrite(MotorPin, 200); //Any value between 0 to 255
delay(10000);//Wait for 10 secs
analogWrite(MotorPin, 100); //Any value between 0 to 255
delay(10000);//Wait for 10 secs
}
STEP 4: Done
Now Power the arduino and see your motor spinning with varying speeds.
Thanks for viewing.
Please write your questions or suggestions below.
37 Comments
BambiB 8 years ago
Massive overkill to use an arduino for this. If you just want to control speed, a 555 timer circuit is WAY cheaper (about a 5-10 cents). If you want to control various intervals, a dedicated processor (ATTINY24/45/85 or ATTINY 13 - less than $1) will do the job.
For switching applications (PWM), especially in battery-operated circuits, a MOSFET is generally preferred over a BJT because it wastes less power.
TheFireMan 8 years ago
Of COURSE its "massive over-kill"..
This is an INSTRUCTable.. it's meant to INSTRUCT or TEACH a process or idea..
It's NOT meant to mini-max or optimize a production item...
Indeed, the majority of the articles fall under the "teachable moments"...
BambiB 8 years ago
Oh wait!
Why not hire someone full time at $100/hour to watch the MacBook, and use a timer to alert them when they should adjust the motor speed.
Oh wait! Why not have a government department to set rules and conditions and regulations and...
Part of learning is understanding when a "solution" makes sense, and when it doesn't. If you need programmable motor control, an arduino isn't a bad first approximation. But if you just need motor control - well, maybe you ought to put an ad on line for motor speed watcher guy positions.
WellActually 3 years ago
Francisco JavierC11 8 years ago
Hahaha! Really funny dude, Your sarcasm is great!
#MacBookWatcher vacancy?- dial me
Aditya vasu 5 years ago
Ishayu 5 years ago
AditiA8 6 years ago
Anshu AR 6 years ago
Hi, you'll probably need to use a MOSFET like an IRF640. With a different circuit.
I would recommend using Digikey part search to find the MOSFET as per your requirements.
IbrahimA196 7 years ago
hi
i just want to know how you select 0.1 microfarad capacitor, if i'm going to use higher amps transistor how to calculate the required capacitor or it depends on the motor? also, do you suggest any further components for protection?
Anshu AR 7 years ago
Selection of capacitor basically does not matters.
It's just a precaution. Just in case you are using this circuit with RC models or such. So that electrical noises doesn't interfare the RC signal.
СтаниславГ4 8 years ago
Спасибо. Хороший урок.
tim939 8 years ago
info-Sam, thank you for posting this! I am new to Arduino stuff and looking forward to building on this instruct able as I work towards creating a small bot as a hobby.
rjmcnealy 8 years ago
Anshu AR 8 years ago
Why don't you try relays.
But you won't be able to control the motor speed.
jimvandamme 8 years ago
Do you need to control the speed, or just turn it on and off? You'll need a higher power transistor, and a FET would be easier to drive.
Anshu AR 8 years ago
Yes, but in this project I used small hobby DC motor that runs on a relatively small amount of current so I used general purpose transistor.
Israeld7 8 years ago
The componentes would be the same as listed, but 1.5 amps using 12 volts would need a decent power source. Look for an old router power supply or some speakers powers supply, if they are 12v and 1.5amps (or greater amp) they would make the job.
CarlosMC 8 years ago
nice circuit, and very useful information. thanks for the detailed explanation about the need of use diode and capacitor... i'm a lot of cheap toy to make with this and arduino nano.
Anshu AR 8 years ago