Skip to Content

Motor DC Vibration engine 1.3V 6mm x 12mm Mini Coreless (Per Piece)

The Coreless Motor is similar to the vibration DC motors found in older mobile devices, making it ideal for small robots, mini projects, or other creative applications where a compact and lightweight vibrational element is needed.

Package Includes:

  • 1 x DC Coreless Motor
9.45 AED 9.45 AED (Tax included)

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days

 

Features:

  • Motor Type: Coreless Motor
  • Speed: 8000RPM for dynamic and efficient performance
  • Compact Design: Overall length of 17 mm (0.67") and body size of 6 x 12 mm (0.24" x 0.47")
  • Wire Length: 2 cm (0.8") for flexible connectivity
  • Material: Durable metal construction for longevity
  • Weight: Lightweight at 5g for easy integration into projects

Specifications:

  • Rated Voltage: DC 1.3V
  • Speed: 8000RPM
  • Overall Length: 17 mm / 0.67"
  • Body Size: 6 x 12 mm / 0.24" x 0.47" (D*H)
  • Wire Length: 2 cm / 0.8"
  • Net Weight: 5g

Arduino Integration:

This motor is a simple 2-pin DC motor. The following Arduino code demonstrates driving it in one direction using a PWM pin for speed control.


// Single direction driving of 2-pin Coreless DC Motor
int motorPin = 9;  // Connect one motor wire to PWM pin, other wire to GND

void setup() {
  pinMode(motorPin, OUTPUT);
}

void loop() {
  // Run motor at half speed
  analogWrite(motorPin, 128); // PWM range 0-255
  delay(3000);

  // Stop motor
  analogWrite(motorPin, 0);
  delay(1000);
}

Connect one wire of the motor to the PWM pin and the other wire to GND. Adjust analogWrite(motorPin, value) to change speed (0 = stop, 255 = full speed). This code runs the motor in a single direction only.