Vibration motor

A vibration motor is a motor which vibrates when given sufficient power. It is a motor that literally shakes.

It is very good for vibrating objects. It can be used in a number of devices for very practical purposes. For example, one of the most common items that vibrate are cell phones that vibrate when called when placed in vibration mode. A cell phone is such an example of an electronic device that contains a vibration motor.

 

So vibration motor circuits have very useful and practical applications that can serve a myriad of uses.

To make a vibration motor vibrate is very simple. All we have to do is add the needed voltage to the 2 terminals. A vibration motor has 2 terminals, usually a red wire and a blue wire. The polarity does not matter for motors.

For our vibration motor, we will be using a vibration motor by Precision Micro drives. This motor has an operating voltage range of 2.5-3.8V to be powered.

 

This is all that is needed to make the vibration motor vibrate. The 3 volts can be provided by 2 AA batteries in series.

However, we want to take the vibration motor circuit to a more advanced level and let it be controlled by a microcontroller such as the arduino.

This way, we can have more dynamic control over the vibration motor and can make it vibrate at set intervals if we want or only if a certain event occurs.

We will show how to integrate this motor with an arduino to produce this type of control.

Specifically, in this project, we will build the circuit and program it so that the motor vibrates every minute.

 

The vibration mechanism and all moving parts are protected within the metallic housing encasing of the motor. For sturdiness and strength, the wires are reinforced and there is a 3M adhesive on its back surface.

The motor will vibrate considerably when supplied with 3V

Almost any NPN transistor can be used to provide current amplification. If you do not have a 2N2222 NPN at hand, then substitute it for a 2N3904.

 

Interfacing with Arduino:

 

The schematic diagram for this circuit is:

When driving a motor with a microcontroller such as the arduino we have here, it is important to connect a diode reverse biased in parallel to the motor. This is also true when driving it with a motor controller or transistor. The diode acts as a surge protector against voltage spikes that the motor may produce. The windings of the motor notoriously produce voltage spikes as it rotates. Without the diode, these voltages could easily destroy your microcontroller, or motor controller IC or zap out a transistor. When simply powering the vibration motor directly with DC voltage, then no diode is necessary, which is why in the simply circuit we have above, we only use a voltage source.

The 0.1µF capacitor absorbs voltage spikes produced when the brushes, which are contacts connecting electric current to the motor windings, open and close.

The reason we use a transistor (a 2N2222) is because most microcontrollers have relatively weak current outputs, meaning they don’t output enough current to drive many different types of electronic devices. To make up for this weak current output, we use a transistor to provide current amplification. This is the purpose of this 2N2222 transistor we are using here. The vibration motor needs about 75mA of current to be driven. The transistor allows this and we can drive the motor. To make sure that too much current does not flow from the output of the transistor, we place a 1KΩ in series with the base of the transistor. This attenuates current to a reasonable amount so that too much current isn’t powering the motor. Remember that transistors usually provide about 100 times the amplification to the base current that enters through. If we don’t place a resistor at the base or at the output, too much current can be damaging to the motor. The 1KΩ resistor value isn’t precise. Any value can be used up to about 5KΩ or so.

We connect the output that the transistor will drive to the collector of the transistor. This is the motor as well as all components it needs in parallel with it for protection of the electronic circuitry.

.

Vibration Motor Code

Code to vibrate the motor every minute
const int motorPin = 3;

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

void loop()
{
digitalWrite(motorPin, HIGH);
delay(1000);
digitalWrite(motorPin, LOW);
delay(59000);
}

Application:

  • Mobiles Phones
  • Used in medical equipment’s
  • Used in car cleaner

 

 

Reference:

https://forum.arduino.cc/index.php?topic=404232.0

http://www.learningaboutelectronics.com/Articles/Vibration-motor-circuit.php

https://forum.arduino.cc/index.php?topic=436504.0

http://tinkbox.ph/learn/tutorial/how-use-and-control-vibration-motor-using-arduino-uno