Axiometa
Motor Driver (L9110S)
Motor Driver (L9110S)
SKU:AX22-0032
Regular price
$2.99
Regular price
Sale price
$2.99
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability



-
Pinout
-
Interface
PCB Design
-
Top
-
Bottom
Arduino Example Code
#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);
}
Guides and Blogs
-
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.