Skip to product information
1 of 3

Axiometa

Motor Driver 6V (L9110S)

Motor Driver 6V (L9110S)

SKU:AX22-0037

Regular price $2.49
Regular price Sale price $2.49
Sale Sold out
Taxes included. Shipping calculated at checkout.

Need to spin one DC motor forward, reverse, coast, or brake without burning GPIOs or worrying about supply voltage? This AX22 board does it cleanly. A robust L9110S H-bridge sits on a 22 × 22 mm PCB and is wired for one motor only, handling up to 800 mA continuous (1.5 A peak). A built-in MT3608 boost converter steps up 3.3 V or 5 V logic supply to a fixed 6 V rail - perfect for small motors. Two active-high control pins (IN1, IN2) handle direction and speed via GPIO or PWM. Just plug into an AX22 backplane. Snap it into your project and drive wheels, sliders, or kinetic mechanisms with Arduino IDE, MicroPython, or MicroBlocks.

View full details
  • Technical Details

    - 22 mm × 22 mm square
    - 4× ⌀2.7 mm Mounting Holes
    - 800 mA continuous, 1.5 A peak 1.8 V, 3.3 V, 5.0 V
    - 1.8 V, 3.3 V, 5.0 V
    - Arduino IDE Compatible
    - MicroPython Compatible
    - MicroBlocks Compatible

    Material Datasheet 
  • Pinout

  • Interface

  • Top

  • Bottom

Arduino Example Code

example.ino

example.ino

#define MOTOR_A1 15
#define MOTOR_A2 45
#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);
}


        
        
  • First time setup

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.

  • Automatic Street Lights

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.

  • How Does an LDR work ?

    Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.