Introduction: Easy, Reversible Motor Control for Arduino (or Any Microcontroller)

About: Hi, I'm Rich Olson (nothinglabs.com). I sell cloud chambers for viewing radiation, make robots and dev software. If you need something prototyped - I might be able to help.
This project uses just three main components to provide forward and reverse control for a single motor.  You can easily interface it to an Arduino or any other microcontroller.

It's so simple - you can wire it up "free-form" without a circuit board in about 15 minutes.


Features:
All parts available at Radio Shack for under $9
Supports PWM for variable speed control
Handles up to 5 amps peak / 2.5 amps continuous (5 amps continuous with heatsink)
Controlled using just two pins - "enable" and "direction"

Limitations:
Requires at least 7.5 volts to operate
Relay is rated for "only" 100,000 cycles and may not be appropriate for some high vibration projects
Doesn't provide motor "braking"

The most common way to provide reversible motor control is with an H-Bridge.  A basic H-Bridge is made up of 4 transistors - but commonly end up requiring more like 10 components when you include things like flyback diodes and secondary transistors.  

I wanted something simpler for a CNC project I'm working on - so I came up with this design.  I'm fairly sure I'm not the "inventor" of this circuit - but it's not widely documented.  As far as I can tell it doesn't have a name.

I am hereby naming it the RAT Controller.  RAT being an acronym for Relay And Transistors.

Step 1: Stuff You'll Need

All parts are available at Radio Shack - expect to pay a bit under $9 for the main components.
The same parts are available online for under $4.

12VDC Coil DPDT Miniature PC Relay
Radio Shack Part: 275-249
If purchasing online - try searching for "OMI-SH-212D"

2 x TIP120 Darlington Transistors
Radio Shack Part: 276-2068

2 x 220 Ohm Resistors
Values do not need to be exact.

Optional: Heatsink
A TO-220 size heatsink such as Radio Shack 276-1363 will allow this motor controller to provide 5 amps continuously as opposed to just peak. You'll also need a #6 screw and nut. See the final "Notes" step for information on installing or making your own heatsink out of a pop can.

You'll also need:

Soldering Iron
And solder - any gauge is fine.

Hookup Wire
You'll need some kind of hookup wire to make connections and interface with your microcontroller.
22 Gauge Solid Core Hookup wire works well and easily fits into Arduino headers.
Available at Radio Shack - Catalog # 278-1221


Step 2: Schematic and Theory of Operation

This circuit uses a DPDT (Double Pole Double Throw) relay to switch which direction the motor is turning.

The motor is connected to both normally closed and normally open (in reverse) sides of the relay.  This in effect reverses the wiring whenever the relay is turned on or off.

Since the microcontroller can't quite produce enough current to drive the relay - a  transistor (TIP120) is used to switch it on and off.

The "Base" of the first TIP120 is the "Direction Pin" - turning it on and off switches the direction of the motor.

A second TIP120 switches power to common on the relay.  This is used to turn the motor on and off.

The "Base" of the second TIP120 is the "Enable Pin" - turning it on causes the motor to actually run.

The enable pin may be switched on and off very quickly for PWM (pulse width modulation) speed control.

Both control pins are connected to the microcontroller via 220 Ohm resistors to limit current.

The minimum voltage to drive this circuit is determined by the "pickup" voltage of the relay.  This is listed as 9.6v - but I've found it to function properly as low as about 7.5v.

Don't worry if the schematic doesn't make total sense.  We'll go through all the connections one-by-one.

Step 3: Bridge NO and NC Pins (Part 1)

Position the relay in front of you as shown in the picture.

Use a piece of hookup wire and your soldering iron to connect the pins as shown.

This connection bridges one of the Normally Open (NO) relay pins to one of the Normally Closed (NC) relay pins.



Step 4: Bridge NO and NC Pins (Part 2)

Again - use a piece of hookup wire and your soldering iron to connect the pins shown.

This connection bridges the other Normally Open (NO) and Normally Closed (NC) relay pins.

Step 5: Connect Coil Pin to Common Pin

One last time - use a piece of hookup wire and your soldering iron to connect the pins shown.

This connects one of the relay's Coil pins to one of its Common pins.  Both of these pins will later be provided with positive voltage.

Step 6: Connect TIP120 Collector to Relay Coil Pin

Solder the middle pin of one of the TIP120s to the relay pin on your lower right (as pictured).

This connects the TIP120 Collector pin to the relay's other Coil pin.

Step 7: Nudge TIP120 Into Position

Carefully push the TIP120 towards your left and against the relay as shown.

This isn't just cosmetic - the TIP120 needs to be in this position for a connection we'll make later.

Step 8: Connect Second TIP120 Collector to Relay Common

Solder the middle pin of the second TIP120 to the bottom pin second from the left on the relay (as pictured).

This connects the second TIP120 Collector pin to one of the relay's Common pins.

Step 9: Connect TIP120 Emitters

Push the second TIP120 up against the relay's case.

Bend the left-most pin of each TIP120 towards each other until they touch.

Solder the pins together as pictured.

This connects the Emitter pins of the two TIP120 transistors.


Step 10: Connect Resistors

Trim the leads of two 220 Ohm resistors to about 1/4 inch using scissors.

Solder a resistor to the end of the right-most pin of each TIP120 as pictured.

These resistors are connected to the Base of the transistors.  They limit current flow between the transistors and your microcontroller to safe levels.

Step 11: Review Connections

Congratulations!  You've completed the basic wiring - let's review how to hook things up.

+ Power
Connect this pin to your power source of 7.5v or higher.

GND
This pin needs to be connected to both ground of your power supply -and- ground on your microcontroller.

Enable
Connect this pin to a pin on your microcontroller.  Turning on this pin turns on the motor.
If you use a microcontroller pin with PWM - you can use it for variable speed control.

Direction
Connect this pin to a pin on your microcontroller. Turning on or off this pin switches motor direction.

Motor 1 and Motor 2
These pins connect to your motor leads.

Step 12: Hook It Up!

Connect all leads as listed in the prior step using hookup wire and your soldering iron.

Be sure to connect the GND pin to Ground on both your power source, and your microcontroller.

If you're using an Arduino - connect the Direction Pin to Arduino Pin 8 and the Enable Pin to Arduino Pin 9.

Step 13: Upload the Code and Test

Place the code below in an Arduino sketch - and upload it.

If you're not using an Arduino - review the code below to figure out what's going on.  It's not rocket science.

You should have a working motor controller!


//pin 8 = direction
//pin 9 = enable

void setup() {
pinMode(8, OUTPUT); //set direction pin as output
pinMode(9, OUTPUT); //set enable pin as output
}

void loop() {

//start off going forward at 50% throttle
digitalWrite(8, HIGH); //forward
analogWrite(9,128); //50% PWM
delay(2000);

//full speed ahead!
digitalWrite(9, HIGH); //full speed
delay(2000);

//and stop for a while
digitalWrite(9, LOW); //turn enable pin off
delay(1000);

//now lets go backwards
digitalWrite(8, LOW); //backward
analogWrite(9,128); //50% PWM
delay(2000);

//and stop for a while
digitalWrite(9, LOW); //turn enable pin off
delay(1000);

Step 14: Notes

If you're having problems with the controller refusing to reverse - it may be that your input voltage is too low.

The relay's coil seems to dictate the maximum voltage this circuit can handle.   It's rated at 130% of nominal - or 15.6v.

Unlike many commercial motor drivers - this driver does not have any "protection" - so if you abuse it too much - it will fail.  Fortunately - the component most likely to burn out is the transistor with the "Enable" pin - so you're only out a $1.50.

It should be possible to build a version of this driver that supports lower voltages by swapping out the relay with one having a lower "pickup" voltage.  I chose the one featured in this project since Radio Shack stocked it.

This project uses TIP120 "Darlington" transistors. These transistors are actually two transistors chained together into one. This gives them much higher "gain" - meaning they can use a very small current to switch a much larger current.  A TIP120 on its own provides a super-simple way to do single-direction motor control.

The TIP120 is rated at 5 amps - but will overheat without a heatsink if run this hard continuously.  I've verified the Radio Shack 276-1363 heatsink can be installed without re-soldering everything (you may need to bend stuff a little).  The heatsink should be installed on the transistor with the "Enable" pin using a #6 bolt and nut (screw it on tight!).

You can alternately make your own heatsink out of a piece of aluminum can.  Just cut a 1"x1" piece of the can using scissors - bend up the sides a little, and drill an 5/32" hole to mount it.  This may not work as well as a proper heatsink - but will definitely help.

Swapping out both the TIP120 and relay with higher-rated parts (readily available online) should let you build a much beefier version of this motor control fairly cheaply.

Have fun!

MakerBot Challenge

Participated in the
MakerBot Challenge