

The Coin Vibration Motor is a compact, coin-shaped motor designed to produce vibrations when powered. It is widely used in applications requiring haptic feedback, such as mobile devices, gaming controllers, wearable devices, and medical equipment. Its small size and low power consumption make it ideal for portable and battery-powered devices.
Common applications include:








Below are the key technical details of the Coin Vibration Motor:
| Parameter | Value |
|---|---|
| Operating Voltage | 2.5V to 3.7V |
| Rated Voltage | 3.0V |
| Operating Current | 80mA (typical at 3.0V) |
| Starting Voltage | 2.3V (minimum) |
| Vibration Frequency | 100-150 Hz |
| Dimensions | Diameter: 10mm, Height: 3mm |
| Weight | ~1.2g |
| Connection Type | Wire leads (red: positive, black: negative) |
The Coin Vibration Motor typically has two wire leads for connection:
| Wire Color | Description |
|---|---|
| Red | Positive terminal (connect to VCC) |
| Black | Negative terminal (connect to GND) |
Below is an example of how to connect and control the Coin Vibration Motor using an Arduino UNO:
// Coin Vibration Motor Control with Arduino UNO
// Connect the motor control circuit to pin 9 (PWM-capable pin)
const int motorPin = 9; // Pin connected to the transistor base
void setup() {
pinMode(motorPin, OUTPUT); // Set motorPin as an output
}
void loop() {
analogWrite(motorPin, 128); // Set motor to 50% intensity (PWM value: 128)
delay(1000); // Run motor for 1 second
analogWrite(motorPin, 0); // Turn off motor
delay(1000); // Wait for 1 second
}
Motor Does Not Vibrate:
Weak Vibration:
Overheating:
Noise or Irregular Vibration:
Q: Can I power the motor directly from an Arduino pin?
A: No, the motor's current requirements (80mA typical) exceed the maximum current an Arduino pin can supply. Use a transistor or MOSFET for control.
Q: How can I adjust the vibration intensity?
A: Use PWM to vary the average voltage supplied to the motor. Higher duty cycles result in stronger vibrations.
Q: Is the motor polarity-sensitive?
A: Yes, connect the red wire to the positive voltage source and the black wire to ground. Reversing the polarity may damage the motor.
Q: Can I use the motor with a 5V power supply?
A: No, the motor is designed for a maximum voltage of 3.7V. Use a voltage regulator or resistor to step down the voltage if necessary.