Axiometa
Vibration Motor (ERM)
Vibration Motor (ERM)
SKU:AX22-0013
Regular price
$4.49
Regular price
Sale price
$4.49
Unit price
per
Taxes included.
Shipping calculated at checkout.
Couldn't load pickup availability



-
Pinout
-
Interface
PCB Design
-
Top
-
Bottom
Arduino Example Code
// Constants
const int motorPin = 15; // Pin connected to the vibration motor
// Variables
bool motorState = false; // Motor state: true = ON, false = OFF
void setup() {
// Initialize the motor pin as an output:
pinMode(motorPin, OUTPUT);
}
void loop() {
// Set the motor pin to the new state
digitalWrite(motorPin, HIGH);
delay(100);
digitalWrite(motorPin, LOW);
delay(1000);
}
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.