Motor Driver Circuit For Arduino
Motor Driver Circuit For Arduino
by Imetomi in electronics
The story of this motor shield is that I wanted to make a robot for my multifunctional
brainwave controlled system and I decided to share this with you. It's a very simple circuit I
used the L293D IC that is a dual bridge motor driver IC. I also added an output for a servo
motor. Finally this circuit was able to control 2 DC motors or 1 stepper motor and a servo motor.
2 Screw Terminals
L293D IC
3 Header Pin
9 Header Pin (90 degrees)
1k Resistor
Red LED
Wires
A PCB Board
Tools:
Soldering Iron
Solder
Wire Stripper/Cutter
Step 2: Soldering
As you can see I used a LinkIt ONE but you can use an Arduino UNO as microcontroller. And
you can connect the pins to any I/O pin of the microcontroller. First insert the parts in the holes
of the PCB then solder to it.Step 3: Wiring Up
I used some copper wires and following the schematic connected the pins of the IC to the header
pins. Doesn't matter that which pin goes to which header pin, just remember that were did you
connected them. The LED is connected in series with the resistor and in paralell with the 5v
VCC.
Step 4: Powering Up
I simply connected a 5 volt power source to the test the circuit.
Connect the
motors to the motor driver circuit. Then the digital pins to the header pins. Example if D6 is high
the motor starts spinning because the IC pulls up the output pin to HIGH. So if the selected pin is
HIGH the motor spins to the programmed direction. In my Case:
#include <Servo.h>
Servo MyServo
void setup() {
// initialize digital pin 13 as an output.
pinMode(11, OUTPUT);
pinMode(10, OUTPUT);
pinMode(6, OUTPUT);
pinMode(5, OUTPUT);
pinMode(3, OUTPUT)
MyServo.attach(3); //connect the servo to pin D3
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(11, HIGH);
delay(2000);
digitalWrite(11, LOW);
digitalWrite(10, HIGH);
delay(2000);
digitalWrite(10, LOW);
digitalWrite(5, HIGH);
delay(2000);
digitalWrite(5, LOW);
digitalWrite(6, HIGH);
delay(2000);
digitalWrite(6, LOW);
MyServo.write(170);
delay(1000);
MyServo.write(0);
}