Hw 130 Motor Control Shield For Arduino Datasheet [ Desktop SIMPLE ]

Hw 130 Motor Control Shield For Arduino Datasheet [ Desktop SIMPLE ]

The HW-130 Motor Control Shield offers a simple, solderless way to drive two small brushed DC motors from an Arduino. Its use of the L293D provides basic protection (thermal, back EMF) but limits continuous current to 600 mA per motor. For higher current (e.g., 12 V motors > 1A), an external H-bridge (like L298N or MOSFET-based) is required. The HW-130 is ideal for educational robotics and lightweight projects where cost and simplicity matter.

You are exceeding 600mA continuous or stalling the motor (stall current can be 2-3x rated). Fix: Hw 130 Motor Control Shield For Arduino Datasheet

void loop() // Motor A Forward at 70% speed digitalWrite(MOTOR_A_DIR, HIGH); analogWrite(MOTOR_A_PWM, 179); // 70% of 255 delay(2000); The HW-130 Motor Control Shield offers a simple,

void setup() // ... same pinMode setup as Example 1 The HW-130 is ideal for educational robotics and

// HW-130 Motor Control Shield (L293D) // Motor A = pins 9(PWM), 8, 7 // Motor B = pins 10(PWM), 6, 5