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

Technical Details
Pinout
Arduino Example Snippet
#define MOTOR_PIN 14
void setup() {
pinMode(MOTOR_PIN, OUTPUT);
}
void loop() {
// Set the motor pin to the new state
digitalWrite(MOTOR_PIN, HIGH);
delay(100);
digitalWrite(MOTOR_PIN, LOW);
delay(1000);
}