Laser Security Alarm

A Laser Security Alarm using Arduino is a project designed to create a security system that detects unauthorized entry using laser beams. This system typically consists of a laser emitter and a receiver placed at opposite ends of an entryway, creating a laser beam that, when interrupted, triggers an alarm.


The Arduino microcontroller is at the heart of this system, processing signals from the laser receiver and controlling the alarm output. When the laser beam is broken by an intruder, the receiver detects the interruption and sends a signal to the Arduino. In response, the Arduino activates an alarm, such as a buzzer or flashing lights, to alert the user to the intrusion.


This project can be customized and expanded to include features like multiple laser beams for different zones, integration with surveillance cameras, or remote monitoring capabilities using Wi-Fi or GSM modules. With its flexibility and versatility, the Laser Security Alarm using Arduino provides an affordable and effective solution for protecting homes, offices, and other valuable assets.


 Circuit Diagram :-



Code :-


// By Arduino Techy 
				​//
int Laser = 8;
int Ldr = 9;
int buzzer = 11;

void setup() 
{       
    pinMode(Laser,OUTPUT);
    pinMode(Ldr,INPUT);
    pinMode(buzzer,OUTPUT);
    
}

 void loop()
{ digitalWrite(8,HIGH);

  if(digitalRead(Ldr)==LOW)
 {
  digitalWrite(11,LOW);
 }
else
{
  digitalWrite(11,HIGH);
}
}

Components :-

blue and black circuit board

Arduino Uno

 Buying Link - 

https://amzn.to/3wcv7BC

LDR

Buying Link - 

https://amzn.to/49UYeHm

Laser

Buying Link - 

https://amzn.to/3y5mQzO

Buzzer 

 Buying Link - 

https://amzn.to/3xVm8VW

Jumper Wires

Buying Link - 

https://amzn.to/3UwFaL7

Bluetooth controlled Light