Coin Cell Vibration Motor Module
Rs 300.00
Quick Info :
- Rated Voltage: 5.0VDC
- Operating Voltage: 3.0-6.0VDC
- Rated Speed: Minimum 9000 rpm
Explore the new Coin Cell Vibration Motor Module. Powered by 5V, control ON/OFF or intensity via digital or PWM signals. Ideal for interactive products, portable devices, and silent mode indicators. Experience amplified vibrations with high-quality mobile phone motor. Unlock precision with PWM control for versatile applications.
Ideal for crafting interactive products sensitive to vibrations, this module serves as the perfect component for portable intelligent devices, offering a discreet non-audible indicator. Whether you’re creating a silent mode reminder or enhancing user experience through tactile feedback, our Vibration Motor Module simplifies the conversion of electrical signals into mechanical vibrations. Elevate your projects with this versatile and efficient module, tailored for optimal performance in diverse applications.
Specifications :
- Rated Voltage: 5.0VDC
- Operating Voltage: 3.0-6.0VDC
- Rated Speed: Minimum 9000 rpm
- Rated Current: Up to 60 mA
- Start Current: Up to 90 mA
- Starting Voltage: DC3.7V
- Insulation Resistance: 10M ohm
- Compatibility: Compatible with UNO R3 / Mega2560 / ESP32 / NodeMCU
- Dimensions: 23x21x5mm
- Mounting: 2x Holes 3mm
Sample Code :
/*
Alphatronic
Created on 11th November 2023
*/
// Arduino PWM Pin
int motorPin = 2;
//ESP32
// int motorPin = 18;
void setup() {
pinMode(motorPin, OUTPUT);
}
void loop() {
// we have a 3V motor and a 5V supply. This means we need to set the duty cycle to 3/5 = 60%.
// If 255 is 100%, then 60% is 153 (255 * 0.6 = 153)
for (int i = 0; i < 154; i++)
{
analogWrite(motorPin, i);
delay(10);
}
analogWrite(motorPin, 0);
delay(3000);
}
Reviews
There are no reviews yet.