W. Durfee, Dec-07
The L293 is an integrated circuit motor driver that can be used for simultaneous, bi-directional control of two small motors. Small means small. The L293 is limited to 600 mA, but in reality can only handle much small currents unless you have done some serious heat sinking to keep the case temperature down. Unsure about whether the L293 will work with your motor? Hook up the circuit and run your motor while keeping your finger on the chip. If it gets too hot to touch, you can't use it with your motor. (Note to ME2011 students: The L293 should be OK for your small motor but is not OK for your gear motor.)
The L293 comes in a standard 16-pin, dual-in line integrated circuit package. There is an L293 and an L293D part number. Pick the "D" version because it has built in flyback diodes to minimize inductive voltage spikes. The L293D can be purchased for somewhere between $2 and $3 (quantity one) from www.mouser.com (PN 511-L293D) or www.digikey.com (PN 296-9518-5-ND). For complete information, consult the Unitrode L293 data sheet (PDF file, 626Kb).
A more recent, improved specification, pin-for-pin compatible chip is recommended for new designs: the TI SN754410NE motor driver. Available from mouser.com, Mouser part number 595-SN754410NE, $1.88. Data sheet (PDF file, 172Kb).
The pinout for the L293 in the 16-pin package is shown below in top view. Pin 1 is at the top left when the notch in the package faces up. Note that the names for pin functions may be slightly different than what is shown in the following diagrams.

The following schematic shows how to connect the L293 to your motor and the Stamp. Each motor takes 3 Stamp pins. If you are only using one motor, leave pins 9, 10, 11, 12, 13, 14, and 15 empty.

Assume you have only one motor connected with the enable tied to Stamp Pin 0, and the two direction controls tied to Stamp Pins 1 and 2.
Here is a table describing the control pin functions.
|
ENABLE
|
DIRA
|
DIRB
|
Function
|
|
H
|
H
|
L
|
Turn right
|
|
H
|
L
|
H
|
Turn left
|
|
H
|
L/H
|
L/H
|
Fast stop
|
|
L
|
either
|
either
|
Slow stop
|
And here is a short sample program that exercises the L293.
'L293 demo code. Pin0=enable, Pin1 & Pin2 = direction '-----bidirectional example high 0: high 1: low 2 for b0 = 1 to 10 toggle 1: toggle 2: pause 500 next low 1: low 2 low 0 pause 5000 '-----fast/slow stop example high 0: high 1: low 2 pause 1000 low 0 pause 5000 high 0: high 1: low 2 pause 1000 low 1 pause 5000 '-----PWM example, full speed for 1 sec, then slow high 0:high 1:low 2 pause 1000 low 1: pause 1000 high 1 for b0 = 1 to 50 high 0: pause 1 low 0: pause 100 next low 1 pause 5000 end