Skip to product information
1 of 4

Motor Driver (L9110S) Internal Supply

Motor Driver (L9110S) Internal Supply

SKU:AX22-0037

Need to spin one DC motor forward, reverse, coast, or brake without burning GPIOs? This AX22 board does it neatly. The power in this module is provided through Vin pins Two active-high control pins (IN1, IN2) give simple direction and PWM speed control. Power can come from the AX22 backplane’s power rail or a separate external VExt Input, just move a solder jumper to select. Snap it into an AX22 backplane and drive wheels, sliders, or pumps in minutes with Arduino IDE, MicroPython, or MicroBlocks.
Regular price $3.49
Regular price Sale price $3.49
Sale Sold out
View full details
  • - 22 mm × 22 mm square
    - 4× ⌀2.7 mm Mounting Holes
    - 800 mA continuous, 2.5 A peak
    - Power Through Vin Pin
    - 3.3 V, 5.0 V IO
    - Arduino IDE Compatible
    - MicroPython Compatible
    - MicroBlocks Compatible

    Material Datasheet 

Technical Resources

Motor Driver (L9110S) Internal Supply - (AX22-0037)

PCB FRONT

PCB BACK

🟢 Live 3D Model

🖱️ Click & drag to rotate
#define MOTOR_A1 14
#define MOTOR_A2 41

#define SPEED 200   // PWM value (0-255)

void setup() {
  pinMode(MOTOR_A1, OUTPUT);
  pinMode(MOTOR_A2, OUTPUT);
}

void loop() {
  // Forward
  analogWrite(MOTOR_A1, SPEED);
  digitalWrite(MOTOR_A2, LOW);
  delay(2000);

  // Stop
  digitalWrite(MOTOR_A1, LOW);
  digitalWrite(MOTOR_A2, LOW);
  delay(500);

  // Backward
  digitalWrite(MOTOR_A1, LOW);
  analogWrite(MOTOR_A2, SPEED);
  delay(2000);

  // Stop
  digitalWrite(MOTOR_A1, LOW);
  digitalWrite(MOTOR_A2, LOW);
  delay(500);
}