12.09.2019
Posted by 

Adafruit Motor Shield. The Stepper and DC motor connections wont do a single thing if the LED is not lit. Or piggyback solder some more L293D drivers on top of.

L293D Motor Driver

L293D is a 16 pin motor driver IC consist of quadruple half H drivers. It can simultaneously control the direction and speed of two DC motors. L293d is a suitable device to use for stepper motors, gear motors etc.

The IC has an operating voltage range from 4.5 V to 36 V. The L293 and L293D models can drive current up to 1A and 600mA respectively.

L293d Motor Controller

L293d pin diagram

L293D pinout 16 Pin PDIP Package

IC L293D pin functions

Motor

Pin 1: Enable 1,2 – This is an active high input. When the pin is high it enables the driver channels 1 and 2.

Input High state – Enabled.

Dc Motor Driver L293d Pdf Converter

Input Low state – Disabled.

Pin 2: Input 1 – Digital input to control the output 1. The state of all outputs OUT1, OUT2, OUT3, OUT4 will be same as the input state applied at the corresponding inputs.

Output = Input.

High input – High output.

Low input – Low output.

Pin 3: Output 1 – Connected to one of the terminals of the motor 1; motor 1 – connected across the output 1 and 2.

Pin 4: GND – Heatsink and Ground Connection. The GND connection itself used as the heat sink to disperse the heat.

Pin 5: GND – Heatsink and Ground Connection.

Pin 6: Output 2 – Connected to the remaining terminal of the motor 1. Motor terminals should be connected with respect to the inputs assigned.

Pin 7: Input 2 – Digital input to control the output 2.

Pin 8: Vcc2 – Supply to the motors, 4.5V to 36V. The supply must be connected to a source capable enough to drive the current requirement of the load.

Pin 9: Enable3,4 – It is also an active high input. It is to enable and disable the driver channels 3 and 4.

Pin 10: Input 3 – Digital input to control the output 3.

Pin 11: Output 3 – Connected to one of the terminals of the motor 2; motor 2 – connected across the output 3 and 4.

Pdf

Pin 12: GND – Heatsink and Ground Connection.

Pin 13: GND – Heatsink and Ground Connection. The Ground terminals should be soldered to a metallic area in the PCB which is enough to transfer the heat generated.

Pin 14: Output 4 – Connected to the remaining terminal of the motor 1.

Pin 15: Input 4 – Input to control the output 4. All the inputs are permitted only up to a maximum of 7V.

Pin 16: Vcc1 – 5V supply for the functioning of the IC.

L293D working

The IC L293D works with an H bridge arrangement, which can alternate the polarity across a load or change the direction of the current.

Refer: DC motor direction control

H bridge Truth table

S1S2S3S4Motor Direction
0000Freerunning
1001Clockwise
0110Anticlockwise
1100Brake
0011Brake

The s1 and s3, s2 and s4 are not permitted to close at a time as it will short circuit the supply.

Simply, what a motor driver does is it act as a current amplifier which gives high current outputs to drive the motor from a low current control signal. Driver IC or a driver circuit is a similar H bridge arrangement instead of switches replaced with transistors, MOSFETs, etc. Hence low current input signals can switch these devices and operate in the same way as an H bridge circuit works. Windows vista 64-bit x64 recovery disc download.

L293D Function Table

INPUTOUTPUTMotor Direction
IN1/IN3IN2/IN4OUT1/OUT3OUT2/OUT4
0000Brake
1010Clockwise
0101Anti-clockwise
1111Brake

L293D motor driver Arduino interfacing

Driver IC L293D is available as module and Arduino shield. L293D Motor Driver modules usually come with an inbuilt Lm317 voltage regulator circuit or similar voltage regulating circuit, along with connectors.

There is no difference in program or connection vice while using the L293D IC directly or through a module.

Connect the 4 inputs and 2 enable pins to the respective digital output pins of the arduino as declared in the code.

Driver module

L293d motor driver module connection with Arduino Uno

The below arduino code just show you how the motor direction changes with the change in respective input states. As given in the code, for five seconds the motor runs in the clockwise direction, then in the counterclockwise direction and then stops; this repeats again.

L293d motor driver Arduino code