Hw 130 Motor Control Shield For Arduino Datasheet Free [repack] May 2026
The HW-130 Motor Control Shield (also known as the L293D Motor Shield) is a versatile driver board based on dual L293D H-bridge chips, allowing you to control multiple motors from an Arduino. Key Technical Specifications Driver Chips: Two L293D ICs and one 74HC595 shift register.
DC Motor Support: Up to 4 bi-directional DC motors with individual 8-bit speed selection.
Stepper Motor Support: Up to 2 stepper motors (unipolar or bipolar).
Servo Support: 2 dedicated connections for 5V hobby servos connected to the Arduino’s high-resolution timers. Output Current: 600mA per channel (1.2A peak current).
Voltage Range: Supports motor voltages from 4.5V to 25V (depending on the specific version, some support up to 36V).
Protections: Built-in thermal shutdown and internal kickback protection diodes. L293D Based Arduino Motor Shield hw 130 motor control shield for arduino datasheet free
Pinout Diagram & Connections (The Free Datasheet Section)
This is the critical part of the hw 130 motor control shield for arduino datasheet free. The shield does not use the same pins as the standard Adafruit motor shield. Here is the exact mapping:
1. What Is It?
The HW-130 is a low-cost, dual H-bridge motor driver shield compatible with Arduino Uno, Leonardo, and Mega. It lets you control two DC motors (speed + direction) or one stepper motor independently.
Option 1: The "Community Helper" (Best for Facebook Groups or Forums)
Headline: 🛑 Stop searching! I found the HW-130 Datasheet (Free Download)
Body: Hey everyone, I know how frustrating it can be to find documentation for some of these generic Arduino shields. I spent way too long digging through broken links trying to find the specs for the HW-130 Motor Control Shield.
I finally found a solid mirror of the datasheet and schematic. If you are trying to figure out the pinout (Pins 5, 6, 9, 10 for motors usually) or the max current limits, this has everything you need. The HW-130 Motor Control Shield (also known as
Download link: [Insert Link Here - Or describe where to find it, e.g., "Check the comments"]
Hope this saves you some time! Happy building! 🤖🔧
#Arduino #MotorControl #HW130 #Electronics #Datasheet #DIY
Wiring Example (Two DC Motors)
- Motor A →
M1andM2screw terminals - Motor B →
M3andM4screw terminals
Arduino Basic Code Example
// HW-130 Motor Control Shield Demo // Motor A: pins 8,9,10 Motor B: pins 11,12,13#define ENA 10 #define IN1 8 #define IN2 9
#define ENB 13 #define IN3 11 #define IN4 12 Pinout Diagram & Connections (The Free Datasheet Section)
void setup() for (int i = 8; i <= 13; i++) pinMode(i, OUTPUT);
void loop() // Motor A forward at half speed digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW); analogWrite(ENA, 128);
// Motor B reverse at full speed digitalWrite(IN3, LOW); digitalWrite(IN4, HIGH); analogWrite(ENB, 255);
delay(2000);
// Stop both motors digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); digitalWrite(IN3, LOW); digitalWrite(IN4, LOW); delay(1000);