Skip to product information
1 of 3

Axiometa

Vibration Motor (ERM)

Vibration Motor (ERM)

SKU:AX22-0013

Regular price $4.49
Regular price Sale price $4.49
Sale Sold out
Taxes included. Shipping calculated at checkout.
This AX22-sized board seats a KOTL flat eccentric-rotating-mass (ERM) motor on a 22 × 22 mm PCB and adds a low-R<sub>DS(on)</sub> MOSFET driver, so you can trigger crisp haptic feedback with a single active-high GPIO pin—no H-bridge or PWM timer required. A fly-back diode and bulk capacitor tame startup surges, while the driver lets even 1.8 V logic pull the 90 mA load safely. Snap it into any AX22 backplane to give wearables, control panels, or notification gadgets a silent buzz or rhythmic pulse in just a few lines of code—Arduino, MicroPython, or MicroBlocks.
View full details
  • Technical Details

    - 22 mm × 22 mm square
    - 4× ⌀2.7 mm Mounting Holes
    - 3 V nominal, 90 mA, ≈ 9000 rpm
    - −20 °C … +60 °C operating range
    - On-board N-channel MOSFET driver & fly-back diode
    - 3.3 V, 5.0 V
    - Arduino IDE Compatible
    - MicroPython Compatible
    - MicroBlocks Compatible

    Material Datasheet 
  • Pinout

  • Interface

  • Top

  • Bottom

Arduino Example Code

example.ino
// 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);
}

        
  • 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.