Simple Fire Alarm Project Using Arduino
A fire alarm system is an essential safety device to detect fires and prevent property damage or loss of life. In this project, we will create a simple fire alarm system using Arduino and a flame sensor. The system will alert users with a buzzer and a red LED when fire is detected.
Required Components
Arduino UNO (1x)
Flame Sensor (1x)
Buzzer (1x)
LED (Red) (1x)
5V-2A Power Supply Adapter
Jumper Wires
Breadboard
How the System Works
This fire alarm system using Arduino operates in the following stages:
1. Flame Detection
The flame sensor detects infrared (IR) radiation emitted by fire or flames. When a flame is present, the sensor outputs a signal (analog or digital) that Arduino can read.
Key Process: The flame sensor’s data pin is connected to one of the Arduino’s digital or analog pins to read the signal.
2. Signal Processing
The Arduino processes the signal received from the flame sensor.
If the signal value exceeds a specific threshold (indicating fire), the Arduino activates the alarm.
If no flame is detected, the system remains in standby mode.
Key Focus: This stage ensures accurate detection and minimizes false alarms.
3. Alert Activation
When fire is detected, the Arduino performs two actions:
Buzzer: The buzzer is activated to emit a loud sound, signaling an emergency.
LED (Red): The red LED is turned on to visually indicate the presence of a fire.
Fire Alarm System Using Arduino: Circuit Diagram
Fire Alarm System Using Arduino Project: Code
int flame_sensor_pin = 4; // initializing pin 4 as the sensor output pin
int buzzer_pin = 3; // initializing pin 8 as the buzzer pin
int led_pin = 2; // initializing the pin 2 as the led pin
int flame_pin = HIGH; // state of sensor
void setup()
{
pinMode(led_pin, OUTPUT); // declaring led pin as output pin
pinMode(flame_sensor_pin, INPUT); // declaring sensor pin as input pin for Arduino
pinMode(buzzer_pin, OUTPUT); // declaring buzzer pin as output pin
Serial.begin(9600); // setting baud rate at 9600
}
void loop()
{
flame_pin = digitalRead(flame_sensor_pin); // reading from the sensor
if (flame_pin == LOW) // applying condition
{
Serial.println("FLAME, FLAME, FLAME");
digitalWrite(led_pin, HIGH); // if state is high, then turn high the led
playMelody(); // play a melody on the buzzer
}
else
{
Serial.println("no flame");
digitalWrite(led_pin, LOW); // otherwise turn it low
noTone(buzzer_pin); // stop playing any tone
}
}
void playMelody()
{
// Play a simple melody: C4, E4, G4, C5
tone(buzzer_pin, 262, 200); // C4
delay(200);
tone(buzzer_pin, 330, 200); // E4
delay(200);
tone(buzzer_pin, 392, 200); // G4
delay(200);
tone(buzzer_pin, 523, 200); // C5
delay(200);
}
Simulating Fire Alarm System Using Arduino on TinkerCad
TinkerCad is a powerful tool for simulating Arduino projects without the need for physical components. Follow these steps to simulate this project on TinkerCad:
Open TinkerCad and create a new circuit.
Add the components: Arduino UNO, Flame Sensor, Buzzer, LED, Resistor, and Breadboard.
Connect the components as per the circuit diagram.
Copy and paste the above code into the Arduino coding environment in TinkerCad.
Start the simulation and test by adjusting the flame sensor’s input to observe how the system reacts.
Frequently Asked Questions (FAQ)
1. How to make a fire detector with Arduino?
To make a fire detector with Arduino, you need a flame sensor to detect flames, an Arduino to process the sensor’s data, and alert components like a buzzer and LED. The Arduino reads the sensor’s input, checks if it exceeds the flame threshold, and activates the alarm system if a fire is detected. Follow the steps and code mentioned above to build your fire detector.
2. What is the application of fire alarm systems using Arduino?
Applications include:
Home safety systems to detect fires early.
Industrial environments to monitor fire hazards.
Educational projects to learn embedded systems and sensors.
Small-scale automation projects for fire prevention and alerts.
3. How does the flame sensor work in a fire alarm system?
The flame sensor detects IR radiation from a fire. When flames are present, the sensor’s signal changes. This change is read by the Arduino, which activates the alarm components like the buzzer and LED.
4. Can this system be expanded?
Yes, this system can be expanded with additional sensors like smoke or temperature sensors to make it more robust. You can also integrate GSM modules to send SMS alerts or connect the system to the Internet for IoT-based monitoring.
Post a Comment