Hw 130 Motor Control Shield For Arduino Datasheet Better Jun 2026
This prevents motor "noise" from resetting your Arduino. Pin Assignments
Up to 4 bi-directional DC motors, 2 stepper motors (unipolar/bipolar), or 2 servo motors. Operating Voltage: 4.5V to 16V for motors (logic requires 5V). Current Handling:
The datasheet typically states "6V to 12V for motors, 5V logic." What it does not explain: hw 130 motor control shield for arduino datasheet better
#include <AFMotor.h>
The HW-130 is an architecture built around and a 74HC595 8-bit serial-to-parallel shift register . This combination allows you to multiplex your pins, controlling a high volume of inductive loads while conserving precious Arduino I/O. Adafruit Motor Shield This prevents motor "noise" from resetting your Arduino
// Create a motor object for motor port 1 (M1) // Use MOTOR12_64KHZ (or other frequencies) for better PWM control AF_DCMotor motor1(1, MOTOR12_64KHZ);
| Feature | Specification | | :--- | :--- | | | L293D (Dual Full H-Bridge) | | Motor Channels | 4 DC Motors or 2 Stepper Motors | | Servo Ports | 2 (Pins Digital 9 and 10) | | DC Current per Channel | 600mA (Continuous), 1.2A (Peak) | | Motor Supply Voltage | 4.5V to 24V DC | | Compatibility | Arduino Uno, Mega, Due, and others with standard pinout | | On-board 5V Regulator | Provides power to the Arduino (via PWR jumper) | | 74HC595 Shift Register | Reduces the number of pins needed for control | Current Handling: The datasheet typically states "6V to
void setup() motor.setSpeed(150); // Set speed (0-255) motor.run(FORWARD); // Turn the motor on in one direction
void setup() Serial.begin(9600); // set up Serial library at 9600 bps Serial.println("Motor test!");