How to Build a Vibration Detector Circuit

In this project, we will go over how to build a vibration detector circuit.This is a circuit which can detect and measure flex, touch, vibration, and shock.The sensor we will use to detect these movements is a piezo vibration sensor from Measuremenet Specialists (MEAS).

The sensors are a thin strip of piezoelectric material with a rivet in the end acting as a weight. When there is a vibration, the weight moves, stressing the piezo material that produces a spike in voltage. This voltage that is created may be up to 90V.How to Build a Vibration Detector Circuit

We are going to connect this vibration sensor to an arduino which can read and detect these voltages that the sensor creates when there is vibration. With the resistance which an analog terminal of an arduino offers, these voltages of up to 90V will be brought to safe levels that will not harm the arduino board. When the arduino detects vibration, the LED connected to it will light up for a second and then turn off with each vibration above a certain threshold value.

This circuit is used often for impact sensing or as a flexible switch. If the piezo sensor is flexed, a large voltage will be created which can switch on a transistor, SCR, or any other type of switching device.

Parts for Vibration Detector Circuit

  • Arduino Board
  • Piezo Vibration Sensor
  • LED

The piezo vibration sensor is from the company MEAS. It can be obtained from a number of online retailers for a very low price (under $5). Follow this link to the piezo sensor offered by Sparkfun- Sparkfun- Piezo vibration sensor.

The piezo sensor is a 2-pin device. One pin represents the positive terminal, while the other pin represents the negative or ground terminal.

Below is the pinout of the sensor:

We will connect the 2 pins to analog terminal A0 and A1 of the arduino board. We will then in our code set one to LOW, representing ground, while the other pin will be the sense pin, which will sense for any vibrations that are made in the sensor’s vicinity.

Vibration Detector Circuit

Below is the circuit of the vibration detector:

The piezo sensor works very well with the arduino. It 2 pins simply go into analog terminal A0 and A1 of the arduino. A0 will be configured to be ground and A1 will be the positive sense pin of the vibration sensor. This pin will detect whether there is any vibration or not.

The LED’s positive pin (the anode) will go into digital pin 13 of the arduino and the negative or ground lead (the cathode) will be connected to ground. No resistor needs to be connected in series with the LED because digital pin 13 has built-in resistance. Therefore, there is enough resistance intrinsically to limit current going to the LED, such that no external resistor is necessary.

With this hardware setup, we will program the software so that this LED lights up when vibration above a certain threshold is reached.

Now that we have our circuit setup, we now just need to connect the arduino to a computer via a USB. The type A connector goes into the computer and the type B goes into the arduino.

Once this is in place, we can now write the code to program the circuit

The first block of code defines the pin connections. The ground pin (of the sensor) will be put in A0 of the arduino. The sensepin will be placed in A1. And the LEDPin will be placed in digital pin D13.

The second block of code defines a variable called threshold. This is a very important variable because it represents the analog level at which the LED will be triggered to turn on. The arduino can detect and measure analog values from 0 to 1023. We created it so that once an analog sound vibration reaches 500 or greater, the LED will be triggered on. You can modify this value to be less or greater depending on the amplitude of the vibration you want to be the trigger point. However, a value near 500 is good for all practical purposes. If you lower the threshold value, then the circuit will detect vibrations easier. If you raise the threshold value, the circuit will need greater vibrations in order to trigger.

The third block of code sets up the A0 terminal as the ground pin. It must be set as output and then declared LOW in order to function as a ground. This serves as the ground for the negative lead of the piezo sensor.

How to Build a Vibration Detector Circuit SchematicThe LEDPin serves as a digital output pin for the LED we connect to D13, so it must be declared output. We put the line Serial.begin(9600) so that if we want, you can see the values that the arduino is reading from the sensor if you had the line Serial.println(reading), for testing purposes.

The fourth block of code is the loop() function. The reading variable measures the actual voltage on the sensePin of the vibration sensor, which is the positive terminal connected to A1. If the reading is larger than the threshold value, the LED will be triggered to high and turned on. If not, it does not turn on. With this code, we only turn the LED on when the vibration is a large enough amount. If you want, you can set the threshold to a higher amount, so that the LED only turns on for a greater impact force to the sensor. Play around with this to suit your needs.
And this is how a vibration sensor works integrated with an arduino board. With this circuit, the LED will turn on for a second with each vibration above the given threshold and then turn off.

 

For more detail: How to Build a Vibration Detector Circuit


About The Author

Ibrar Ayyub

I am an experienced technical writer holding a Master's degree in computer science from BZU Multan, Pakistan University. With a background spanning various industries, particularly in home automation and engineering, I have honed my skills in crafting clear and concise content. Proficient in leveraging infographics and diagrams, I strive to simplify complex concepts for readers. My strength lies in thorough research and presenting information in a structured and logical format.

Follow Us:
LinkedinTwitter

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top