Security Alarm System using vibration Sensor Circuit Diagram

Hello, guys in this post I will tell you how you can make Security Alarm System using a vibration sensor. if you think to make a vibration-based security alarm system, read this post till the end very carefully.

this project you can use in CAR, Bike, Home Door, and other places where you need. this is a very low-cost and high-impact alarm system. Even you can modify this project according to your need. Because in this post I will give you everything to make this project possible. just scroll down and know everything.

Here on this site, you will get all the electronics to relate information, new electronics project-making ideas, and electronics gadgets repairing techniques.

Materials to make Security Alarm System

SL NoComponentsBuying link
1Attiny85BUY
2Vibration SensorBUY
3Micro USB ShocketBUY
4BuzzerBUY
55mm LEDBUY
6Vero BoardBUY

Security Alarm System Circuit Diagram

Security Alarm System using vibration Sensor

Security Alarm System CODE Download


// ATMEL ATTINY25/45/85 / ARDUINO
//
//                  +-\/-+
// Ain0 (D 5) PB5  1|    |8  Vcc
// Ain3 (D 3) PB3  2|    |7  PB2 (D 2)  Ain1
// Ain2 (D 4) PB4  3|    |6  PB1 (D 1) pwm1
//            GND  4|    |5  PB0 (D 0) pwm0
//  
int Buzz = 3;
int vs =2; // vibration sensor
int i=0;
void setup(){
  pinMode(Buzz, OUTPUT);
  pinMode(vs, INPUT); 
}
void loop(){
int vib = digitalRead(vs);
  if(vib == HIGH)
  {
    for(i=0;i<10;i++)
    {
    digitalWrite(Buzz, HIGH);
    delay(500);
    digitalWrite(Buzz, LOW); 
    delay(100);
  }
  }
  else{
    digitalWrite(Buzz, LOW); 
  }
}

Download Code

Watch Video on making Security Alarm System

Others New Electronics Project making Ideas

FAQ of Vibration-Based Security Alarm System

Vibration sensor alarm circuit diagram

This post is about the Vibration sensor alarm circuit diagram. Here you will get all the information and components list with buying links to make your project at your home.

Earthquake alarm project circuit diagram

This project you can also use for Earthquake alarm project. To make you earthquake alarm security system at your home, read this post till the end very carefully.

Vibration Sensor Alarm for car

This is the best project for the Vibration Sensor Alarm for cars. I have explained everything about this project to save your car from thieves.

About Dipankar Das

I am a Professional Electronics Technician, Blogger, Youtuber, Social Media Influencer, and founder of Dip Electronics LAB. I have profession on Electronics, PCB Designing, Project Making, Gadgets Repairing and 3D Printing. Keep visiting to get important information.

Check Also

attiny85 ic chip programmer making process

How to make Attiny85 IC Programmer New Way

Hello, guys in this video I will tell you how you can make Attiny85 IC …

Leave a Reply

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