Tutorial: L293D H Bridge DC motor controller with Arduino

On this tutorial, we will show you how to use the L293D DC motor controller with the Arduino. The L293D is a H Bridge type IC and can control DC motors up to 36V. For detailed specs, check the datasheet.

Let's take a look at the L293D pinout:

As shown in the picture above, it's possible to drive 2 motors with a single L293D, however the power supply has to be strong enough to provide enough current. Here we will demonstrate with just one motor. The following table shows how to make the motor turn clockwise and anti-clockwise:

For example, if the pins 1 and 7 are in HIGH state, and the pin 2 in the LOW, the motor will rotate clockwise. On the other hand, if the pins 1 and 2 are in HIGH, and the pin 7 in the LOW, the motor will turn to the other way.

With a push button, a 10Kohm resistor, a DC motor, a 9V battery, an Arduino and the L293D, let's make this circuit:

On this circuit, the 9V battery supply the energy to the DC motor. Be careful, check you motor datasheet before connect it to the circuit!

After that, open your Arduino IDE and upload this code:

int switchPin = 2; // switch input
int motor1Pin1 = 3; // pin 2 on L293D
int motor1Pin2 = 4; // pin 7 on L293D
int enablePin = 9; // pin 1 on L293D

void setup() {
    // set the switch as an input:
    pinMode(switchPin, INPUT);

    // set all the other pins you're using as outputs:
    pinMode(motor1Pin1, OUTPUT);
    pinMode(motor1Pin2, OUTPUT);
    pinMode(enablePin, OUTPUT);

    // set enablePin high so that motor can turn on:
    digitalWrite(enablePin, HIGH);
}

void loop() {
    // if the switch is high, motor will turn on one direction:
    if (digitalRead(switchPin) == HIGH) {
        digitalWrite(motor1Pin1, LOW); // set pin 2 on L293D low
        digitalWrite(motor1Pin2, HIGH); // set pin 7 on L293D high
    }
    // if the switch is low, motor will turn in the opposite direction:
    else {
        digitalWrite(motor1Pin1, HIGH); // set pin 2 on L293D high
        digitalWrite(motor1Pin2, LOW); // set pin 7 on L293D low
    }
}

Turn on your circuit and the motor will rotate to one direction. Press the button and the motor will rotate to the other side.

That it! Feel free to comment and post your thoughts. The Garage Lab is and open space to share knowledge and talk about electronics, open hardware, arduino and DIY stuff and hacking.

References:

http://luckylarry.co.uk/arduino-projects/control-a-dc-motor-with-ar...

http://arduino.cc/playground/Main/InterfacingWithHardware

http://www.datasheetcatalog.org/datasheet/stmicroelectronics/1330.pdf

Views: 17750

Tags: L293D, arduino, dc, h-bridge, motor, tutorial

Comment by Rahul Vyas on September 9, 2012 at 3:30am

Hi,

Need urgent help.
 I have a 12v motor which takes 4.55A current at full throttle. I want to control 2 of these motors with my reciever.

Check this link for the motor datasheet- http://www.pitsco.com/sharedimages/resources/DCDriveMotorSpecs.pdf

Also, Can this circuit be modified to control it with a RC reciever/transmitter?

Comment by Marcelo Rodrigues on September 9, 2012 at 7:47am

Rahul,

As the L293 can not drive so high current for your motors, you have to use another thing. I suggest you use an H-Bridge circuit like this one:

Image from http://wiki.mech.uwa.edu.au/index.php/Micro_crash_course/pwm

The idea is making the current flow through the load (motor) in the 2 different directions, making the motor spin to both directions, depending on what mosfets are active. You still can use PWM to control the speed.

Take a look at the article (link above) to understand how it works.

Good luck!

Comment by Ethan on November 3, 2012 at 3:28pm

I was woundering if you could use xbees to make this wireless.  Also can I do this with 2 motors and 1 arduino?  I need help! 

Comment

You need to be a member of GarageLab (arduino, electronics, robotics, hacking) to add comments!

Join GarageLab (arduino, electronics, robotics, hacking)

Latest Activity

Profile IconEvaristo Ramos, Jr. and Dayan Martinez joined GarageLab (arduino, electronics, robotics, hacking)
6 hours ago
Christian Rheinnecker posted a status
"New Video Cypress Hill - Rap Superstar https://www.youtube.com/watch?v=VZSFgdrhzQQ"
8 hours ago
Christian Rheinnecker posted a video

Arduino PrX : Sequencer AM808 VX3 - Demo Cypress Hill - Rap Superstar Beat Play

Demonstration eines Beats auf dem AM808 VX3 Arduino Midi Sequencer Cypress Hill - Rap Superstar Weiter Infos auf http://arduinoprx.de
8 hours ago
Christian Rheinnecker posted a status
11 hours ago
Christian Rheinnecker posted a status
11 hours ago
Shannon Bradley replied to Dennis Melamed's discussion Little Gem Amp Circuit problems
"Im not sure why people turn to IC's for sound or power. I had this little amp kicking around…"
yesterday
GarageLab posted blog posts
yesterday
Profile IconWoodison Germain, Weerapong Saipetch, Jasmin Ouellet and 8 more joined GarageLab (arduino, electronics, robotics, hacking)
yesterday
Numato Lab updated their profile
yesterday
Mark Harrison commented on Thulana Vimukthi's blog post GPS GUIDED AUTONOMOUS ROBOT
"Thulana, very excellent project! It is especially nice, as the hardware connections are relatively…"
yesterday
GarageLab posted a blog post

Make your Thor's Hammer

Rather than being a benign foam hammer, this Mjölnir can summon 80,000 volts of electricity thanks…See More
Wednesday
Profile IconMatthew Brown, David Shepard, Numato Lab and 3 more joined GarageLab (arduino, electronics, robotics, hacking)
Wednesday
Terry Ford updated their profile
Wednesday
GarageLab posted blog posts
Tuesday
Profile Icon►Shannon Code, salomão soares, Jeremy Nelson and 5 more joined GarageLab (arduino, electronics, robotics, hacking)
Tuesday
Paul hunt updated their profile
Tuesday
Terry White replied to Milton Vilela's discussion Firmware GRBL + CNC milling machine -> 3D Printer
"you can add a touch probe to cnc to digitize an object, just limited to issues with undercuts."
Tuesday
Shannon Bradley replied to Milton Vilela's discussion Firmware GRBL + CNC milling machine -> 3D Printer
"  Ya Terry,  Sorry, I don't know why I added CNC to 3D? above. A bit too far out of…"
Monday
Terry White replied to Milton Vilela's discussion Firmware GRBL + CNC milling machine -> 3D Printer
"if you could just use the spindle on/off to control a secondary arduino to run the extruder…"
Monday
Profile IconDavid Romero, Terry White, Kevin Reeve and 4 more joined GarageLab (arduino, electronics, robotics, hacking)
Monday

© 2013   Created by Marcelo Rodrigues.

Badges  |  Report an Issue  |  Terms of Service