SlideShare a Scribd company logo
1 of 28
MINI PROJECT
GSM BASED SMS ALERT FIRE ALARM
SYSTEM USING ARDUINO
Overview
So what is this project? What does it do?
Basically this is a fire monitoring system,
which detects if there is a fire by measuring
the surrounding temperature. If it goes
beyond a certain critical point, it alerts the
user by sending a text alert to the phone
number of the user so that he or she may be
able to prevent any serious damage.
Before we start with the project itself, let’s see what led us to
take up this challenge to make this fire alarm system.
• Smoke alarms provide a critical early warning of fire, allowing
additional time to escape. National estimates of reported fires derived
from the National Fire Incident Reporting System (NFIRS) and the
National Fire Protection Association’s (NFPA’s) fire department survey
show that in 2009-2013, fires in homes with no smoke alarms caused an
average of 940 deaths per year (38% of home fire deaths). An
additional 510 people per year (21% of home fire deaths) were fatally
injured in fires in which smoke alarms were present but failed to
operate.
• Hardwired smoke alarms were more likely to operate than those
powered solely by batteries.
• The death rate per 100 reported fires was more than twice as high in
homes with no or no working smoke alarms (1.18 deaths per 100 fires)
as it was in fires with working smoke alarms (0.53 deaths per 100
fires). The lowest fire death rates were seen in homes with hardwired
smoke alarms and sprinklers.
So, we see that fire alarm systems are very much
in need even in this technologically advanced
era.
Speaking of technological advancements, what
comes to the mind first?
Smartphones!
So, why not integrate a fire alarm system with
our smartphones? That way the system can
warn us anytime there is a fire regardless of
wherever we are at the moment. We do not
have to be physically present at the site of the
fire to prevent it! That is worderful! Now let’s
get to the project itself.
Equipments used
• Arduino Uno
• GSM Module
• 16x2 LCD Display
• LM 35
• Vero Board
• 10k potentiometer
• 12V AC Adapter
• Resistors
• Wires and jumper cords
Circuit Diagram
The main elements of the circuit
• The Arduino
• LM 35
• The GSM Module
• The LCD display
The Arduino
It is an open-source microcontroller based kit for building digital
devices and interactive objects that can sense and control objects in
the physical world. It is based on microcontroller board designs,
manufactured by several vendors, using various microcontrollers.
These systems provide sets of digital and analog I/O pins that can
be interfaced to various expansion boards ("shields") and other
circuits. The boards feature serial communications interfaces,
including USB on some models, for loading programs from personal
computers. For programming the microcontrollers, the Arduino has
a specific software associated with it which provides an integrated
development environment (IDE) based on the Processing project,
which includes support for the C and C++ programming languages.
In this project this is the main workhorse. This controls the entire
circuit and makes all the decisions.
LM 35
• The LM35 is an integrated circuit sensor that can be used
to measure temperature with an electrical output
proportional to the temperature (in oC)
• Why Use LM35s To Measure Temperature?
» We can measure temperature more accurately than a using a
thermistor.
» The sensor circuitry is sealed and not subject to oxidation, etc.
» The LM35 generates a higher output voltage than
thermocouples and may not require that the output voltage be
amplified.
What Does An LM35 Look Like?
Here it is.
• What Does an LM35 Do? How does it work?
» It has an output voltage that is proportional to the Celsius
temperature.
» The scale factor is .01V/oC
» The LM35 does not require any external calibration or trimming
and maintains an accuracy of +/-0.4 oC at room temperature
and +/- 0.8 oC over a range of 0 oC to +100 oC.
» Another important characteristic of the LM35 is that it draws
only 60 micro amps from its supply and possesses a low self-
heating capability. The sensor self-heating causes less than
0.1 oC temperature rise in still air.
• The LM35 comes in many different packages, including
the following.
» TO-92 plastic transistor-like package,
» T0-46 metal can transistor-like package
» 8-lead surface mount SO-8 small outline package
» TO-202 package. (Shown in the previous slide)
The GSM Module
This module is responsible for the communication part of the
circuit. It takes information from the Arduino where to send
information and what information is to be sent. It uses a GSM SIM
card for communication purposes. It is basically just a MODEM
which uses serial communication to interface with and need Hayes
compatible AT commands for communication with the Arduino.
The alert message and the phone number of the recipient is given
by the user through the Arduino code. As soon as fire is detected an
SMS will be sent to the recipient’s phone number from the SIM card
inserted into the module.
SIM Card slot
Antenna
This is what it looks like
The LCD Display
This is used for displaying the current status of the circuit and the
actions taken by the circuit.
Now let’s get to the working…
• The LM 35 continuously monitors the
temperature and sends that information to
the Arduino. The temperature data is sent in
the form of voltage. The scale factor of the LM
35 is 0.01V/ºC.
• If a fire takes place, the temperature of the
surrounding starts increasing. As soon as the
temperature crosses a threshold value, the
Arduino sends a signal to the GSM Module to
do its job.
• The GSM Module sends a text message to the
user’s phone number from the SIM Card that
is inserted into the module. The code run on
the Arduino determines which number to
send the message to, how many times the
message needs to be sent, and some other
details.
• Now that the user has been alerted, the job of
the system is over. It is now up to the user to
take preventive measures.
Setbacks and Modifications
• No project is a success without setbacks. In
this project, the GSM Module proved to be a
major problem as during the testing, due to
unregulated current fluctuations, the chip
burned out and stopped working.
• So, we had to modify the project a little bit,
due to time constraints, we ultimately ended
up making just a simple fire alarm with an
alert speaker. To do this, we had to modify the
Arduino code for the circuit to function
without the GSM Module.
The modifications to the code are as follows:
• We created an extra function Alert() which is
called as soon as “fire” is detected, which tells
the speaker to sound the alarm.
• As soon as the surrounding temperature
restores back to normal, the condition in the
code to check whether fire has occurred or
not, becomes false and the noTone() function
is called to stop the speaker.
The modified Arduino Code
#include <SoftwareSerial.h>
#include<LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
SoftwareSerial mySerial(9, 10);
int sensor=A1;
float temp_read,Temp_alert_val,Temp_shut_val; int Fire_Set;
void setup()
{
pinMode(sensor,INPUT);
mySerial.begin(9600);
Serial.begin(9600);
lcd.begin(16,2);
delay(500);
}
void loop()
{
CheckFire();
CheckShutDown();}
void CheckFire()
{
lcd.setCursor(0,0);
lcd.print("Fire Scan-ON");
Temp_alert_val=CheckTemp();
if(Temp_alert_val>45)
{
Alert();
lcd.setCursor(0,1);
lcd.print("Fire Alert!");
Fire_Set = 1;
}
}
float CheckTemp()
{
temp_read=analogRead(sensor); // reads the sensor output (Vout of LM35)
temp_read=temp_read*5; // converts the sensor reading to temperature
temp_read=temp_read/10; // adds the decimal point
return temp_read; // returns temperature value in degree celsius
}
void Alert()
{
tone(8,2637);
}
void CheckShutDown()
{
if(Fire_Set==1)
{
Temp_shut_val=CheckTemp();
if(Temp_shut_val<28)
{
noTone(8);
lcd.setCursor(0,1);
lcd.print("Fire Shut!");
Fire_Set=0;
}
}
}
The Realised Project
The Modified Realised Project
Here is an animation showing the
working of the project…
The GSM Module
receives info from the
Arduino and sends
the text alert to the
user’s phone number
The Arduino
now tells the
display to its
job!
LM 35
In case of a fire,
The LM 35 senses a temperature
rise…
The LM 35
now passes
the info on to
the Arduino
The Arduino then
Processes the info
and tells the other
components to do
their respective jobs!
Fire
Detected!
SMS Sent!
END OF PROJECT

More Related Content

What's hot

FIRE ALARM SYSTEM PPT.pptx
FIRE ALARM SYSTEM PPT.pptxFIRE ALARM SYSTEM PPT.pptx
FIRE ALARM SYSTEM PPT.pptxRaJYadav196733
 
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO pptAUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO pptRavi Shankar
 
Automatic fire detector
Automatic fire detectorAutomatic fire detector
Automatic fire detectorRAHUL SINHA
 
Project presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detectorProject presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detectorPETER ASIGRI
 
Arduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded SystemsArduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded SystemsImtiaze A.
 
Fire Alarm System Project
Fire Alarm System ProjectFire Alarm System Project
Fire Alarm System ProjectRinkuNahar
 
Microcontroller Based LPG Detector Using GSM Module
Microcontroller Based LPG Detector Using GSM ModuleMicrocontroller Based LPG Detector Using GSM Module
Microcontroller Based LPG Detector Using GSM ModuleManish Patel
 
fire detection system
fire detection systemfire detection system
fire detection systemShaik Suhail
 
Arduino: On-board components description, IDE and Programming
Arduino: On-board components description, IDE and Programming Arduino: On-board components description, IDE and Programming
Arduino: On-board components description, IDE and Programming Pawan Dubey, PhD
 
Gas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering ProjectGas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering ProjectCircuitsToday
 
Gas & smoke detector
Gas & smoke detectorGas & smoke detector
Gas & smoke detectorToushik Paul
 
Smart sensors and their Application
Smart sensors and their ApplicationSmart sensors and their Application
Smart sensors and their ApplicationYash Kant
 
Somke detector project presentation
Somke detector project presentationSomke detector project presentation
Somke detector project presentationRija Fatima
 
Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266Rishav Pandey
 
Wireless E-Notice Board Using Bluetooth Report.docx
Wireless E-Notice Board Using Bluetooth Report.docxWireless E-Notice Board Using Bluetooth Report.docx
Wireless E-Notice Board Using Bluetooth Report.docxAbhishekGM10
 
Alcohol Detection System in Vehicle using Arduino
Alcohol Detection System in Vehicle using ArduinoAlcohol Detection System in Vehicle using Arduino
Alcohol Detection System in Vehicle using ArduinoIRJET Journal
 
IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation projectShohin Aheleroff
 

What's hot (20)

LPG gas leekage dectection
LPG gas  leekage  dectectionLPG gas  leekage  dectection
LPG gas leekage dectection
 
FIRE ALARM SYSTEM PPT.pptx
FIRE ALARM SYSTEM PPT.pptxFIRE ALARM SYSTEM PPT.pptx
FIRE ALARM SYSTEM PPT.pptx
 
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO pptAUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
AUTONOMOUS LPG GAS SENSOR BOT USING ARDUINO ppt
 
Automatic fire detector
Automatic fire detectorAutomatic fire detector
Automatic fire detector
 
Project presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detectorProject presentation on wireless lpg leakage detector
Project presentation on wireless lpg leakage detector
 
Arduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded SystemsArduino UNO Gas & Smoke Detection - Embedded Systems
Arduino UNO Gas & Smoke Detection - Embedded Systems
 
Fire Alarm System Project
Fire Alarm System ProjectFire Alarm System Project
Fire Alarm System Project
 
Microcontroller Based LPG Detector Using GSM Module
Microcontroller Based LPG Detector Using GSM ModuleMicrocontroller Based LPG Detector Using GSM Module
Microcontroller Based LPG Detector Using GSM Module
 
fire detection system
fire detection systemfire detection system
fire detection system
 
Arduino: On-board components description, IDE and Programming
Arduino: On-board components description, IDE and Programming Arduino: On-board components description, IDE and Programming
Arduino: On-board components description, IDE and Programming
 
Smoke Detection System
Smoke Detection SystemSmoke Detection System
Smoke Detection System
 
Gas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering ProjectGas Leakage Detector using Arduino with SMS Alert - Engineering Project
Gas Leakage Detector using Arduino with SMS Alert - Engineering Project
 
Gas & smoke detector
Gas & smoke detectorGas & smoke detector
Gas & smoke detector
 
Smart sensors and their Application
Smart sensors and their ApplicationSmart sensors and their Application
Smart sensors and their Application
 
Somke detector project presentation
Somke detector project presentationSomke detector project presentation
Somke detector project presentation
 
Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266Patient Health Monitoring System Using Arduino & ESP8266
Patient Health Monitoring System Using Arduino & ESP8266
 
Wireless E-Notice Board Using Bluetooth Report.docx
Wireless E-Notice Board Using Bluetooth Report.docxWireless E-Notice Board Using Bluetooth Report.docx
Wireless E-Notice Board Using Bluetooth Report.docx
 
Alcohol Detection System in Vehicle using Arduino
Alcohol Detection System in Vehicle using ArduinoAlcohol Detection System in Vehicle using Arduino
Alcohol Detection System in Vehicle using Arduino
 
Home automation ppt
Home automation pptHome automation ppt
Home automation ppt
 
IoT home automation project
IoT home automation projectIoT home automation project
IoT home automation project
 

Similar to GSM Based SMS fire alert system

GSM Based Fire Security System
GSM Based Fire Security SystemGSM Based Fire Security System
GSM Based Fire Security Systemijtsrd
 
Arduino Based Smart Home Automation System
Arduino Based Smart Home Automation SystemArduino Based Smart Home Automation System
Arduino Based Smart Home Automation Systemijtsrd
 
WIRELESS FIRE ALARM & MONITOR ON LCD
WIRELESS FIRE ALARM & MONITOR ON LCDWIRELESS FIRE ALARM & MONITOR ON LCD
WIRELESS FIRE ALARM & MONITOR ON LCD20285ThirupathiReddy
 
Overheat and smoke detection with gsm
Overheat and smoke detection with gsmOverheat and smoke detection with gsm
Overheat and smoke detection with gsmVishal Kumar
 
IOT NodeMCU - IFTTT Templet to send SMS
IOT NodeMCU - IFTTT Templet to send SMSIOT NodeMCU - IFTTT Templet to send SMS
IOT NodeMCU - IFTTT Templet to send SMSElaf A.Saeed
 
GSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECT
GSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECTGSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECT
GSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECTThrinadh Komatipalli
 
REAL TIME AUTOMATION FOR COLLEGES
REAL TIME AUTOMATION  FOR COLLEGESREAL TIME AUTOMATION  FOR COLLEGES
REAL TIME AUTOMATION FOR COLLEGESNishmi Suresh
 
Wireless ai based intelli industrial security robot 2 ppt
Wireless ai based intelli industrial security robot 2 pptWireless ai based intelli industrial security robot 2 ppt
Wireless ai based intelli industrial security robot 2 pptVarun B P
 
weather monitoiring system.pptx
weather monitoiring system.pptxweather monitoiring system.pptx
weather monitoiring system.pptxPranayBathini1
 
Zigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptZigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptVenkatesh Kaduru
 
IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...
IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...
IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...DeepakK547422
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)inventionjournals
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) inventionjournals
 
optical beam security system
optical beam security systemoptical beam security system
optical beam security systemshahsamkit73
 
A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...
A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...
A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...ijesajournal
 
Integrated Security System With Remot Controlling Of Appliances
Integrated Security System With Remot Controlling Of AppliancesIntegrated Security System With Remot Controlling Of Appliances
Integrated Security System With Remot Controlling Of AppliancesIRJET Journal
 
K041246468
K041246468K041246468
K041246468IOSR-JEN
 
Dtmf based home automation system using microcontroller ppt
Dtmf based home automation system using microcontroller pptDtmf based home automation system using microcontroller ppt
Dtmf based home automation system using microcontroller pptSree Sree
 

Similar to GSM Based SMS fire alert system (20)

GSM Based Fire Security System
GSM Based Fire Security SystemGSM Based Fire Security System
GSM Based Fire Security System
 
Arduino Based Smart Home Automation System
Arduino Based Smart Home Automation SystemArduino Based Smart Home Automation System
Arduino Based Smart Home Automation System
 
WIRELESS FIRE ALARM & MONITOR ON LCD
WIRELESS FIRE ALARM & MONITOR ON LCDWIRELESS FIRE ALARM & MONITOR ON LCD
WIRELESS FIRE ALARM & MONITOR ON LCD
 
Overheat and smoke detection with gsm
Overheat and smoke detection with gsmOverheat and smoke detection with gsm
Overheat and smoke detection with gsm
 
IOT NodeMCU - IFTTT Templet to send SMS
IOT NodeMCU - IFTTT Templet to send SMSIOT NodeMCU - IFTTT Templet to send SMS
IOT NodeMCU - IFTTT Templet to send SMS
 
GSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECT
GSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECTGSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECT
GSM BASED GAS ESCAPE BURST AND FIRE SAFETY PROJECT
 
REAL TIME AUTOMATION FOR COLLEGES
REAL TIME AUTOMATION  FOR COLLEGESREAL TIME AUTOMATION  FOR COLLEGES
REAL TIME AUTOMATION FOR COLLEGES
 
EESS.pptx
EESS.pptxEESS.pptx
EESS.pptx
 
Wireless ai based intelli industrial security robot 2 ppt
Wireless ai based intelli industrial security robot 2 pptWireless ai based intelli industrial security robot 2 ppt
Wireless ai based intelli industrial security robot 2 ppt
 
weather monitoiring system.pptx
weather monitoiring system.pptxweather monitoiring system.pptx
weather monitoiring system.pptx
 
Zigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners pptZigbee based intelligent helemet for coal miners ppt
Zigbee based intelligent helemet for coal miners ppt
 
IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...
IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...
IOT BASED AIR QUALITY INDEX MONITORING SYSTEM – MONITOR PM2.5, PM10, AND CO U...
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI) International Journal of Engineering and Science Invention (IJESI)
International Journal of Engineering and Science Invention (IJESI)
 
AUTOMATIC SMART ENERGY MANAGEMENT SYSTEM
AUTOMATIC SMART ENERGY MANAGEMENT SYSTEMAUTOMATIC SMART ENERGY MANAGEMENT SYSTEM
AUTOMATIC SMART ENERGY MANAGEMENT SYSTEM
 
optical beam security system
optical beam security systemoptical beam security system
optical beam security system
 
A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...
A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...
A Review on Zigbee, Gsm and Wsn Based Home Security by Using Embedded Control...
 
Integrated Security System With Remot Controlling Of Appliances
Integrated Security System With Remot Controlling Of AppliancesIntegrated Security System With Remot Controlling Of Appliances
Integrated Security System With Remot Controlling Of Appliances
 
K041246468
K041246468K041246468
K041246468
 
Dtmf based home automation system using microcontroller ppt
Dtmf based home automation system using microcontroller pptDtmf based home automation system using microcontroller ppt
Dtmf based home automation system using microcontroller ppt
 

Recently uploaded

Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...gajnagarg
 
Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...amitlee9823
 
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...amitlee9823
 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...MOHANI PANDEY
 
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...motiram463
 
SM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfSM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfStefanoBiamonte1
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证tufbav
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men 🔝Vijayawada🔝 E...
➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men  🔝Vijayawada🔝   E...➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men  🔝Vijayawada🔝   E...
➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men 🔝Vijayawada🔝 E...amitlee9823
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja Nehwal
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...amitlee9823
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证ehyxf
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...amitlee9823
 
Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Pooja Nehwal
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...amitlee9823
 

Recently uploaded (20)

CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Hauz Quazi  (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Hauz Quazi (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
Just Call Vip call girls godhra Escorts ☎️9352988975 Two shot with one girl (...
 
Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Banashankari Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
 
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
Kothanur Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
(ISHITA) Call Girls Service Aurangabad Call Now 8617697112 Aurangabad Escorts...
 
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
Get Premium Pimple Saudagar Call Girls (8005736733) 24x7 Rate 15999 with A/c ...
 
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
(👉Ridhima)👉VIP Model Call Girls Mulund ( Mumbai) Call ON 9967824496 Starting ...
 
SM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdfSM-N975F esquematico completo - reparación.pdf
SM-N975F esquematico completo - reparación.pdf
 
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
怎样办理斯威本科技大学毕业证(SUT毕业证书)成绩单留信认证
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
Call Now ≽ 9953056974 ≼🔝 Call Girls In Yusuf Sarai ≼🔝 Delhi door step delevry≼🔝
 
➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men 🔝Vijayawada🔝 E...
➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men  🔝Vijayawada🔝   E...➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men  🔝Vijayawada🔝   E...
➥🔝 7737669865 🔝▻ Vijayawada Call-girls in Women Seeking Men 🔝Vijayawada🔝 E...
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
 
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
Vip Mumbai Call Girls Kalyan Call On 9920725232 With Body to body massage wit...
 
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
怎样办理圣芭芭拉分校毕业证(UCSB毕业证书)成绩单留信认证
 
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Arekere ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
Vip Mumbai Call Girls Andheri East Call On 9920725232 With Body to body massa...
 
Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006Call Girls in Vashi Escorts Services - 7738631006
Call Girls in Vashi Escorts Services - 7738631006
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Katraj ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men  🔝Muzaffarpur🔝  ...
➥🔝 7737669865 🔝▻ Muzaffarpur Call-girls in Women Seeking Men 🔝Muzaffarpur🔝 ...
 

GSM Based SMS fire alert system

  • 1. MINI PROJECT GSM BASED SMS ALERT FIRE ALARM SYSTEM USING ARDUINO
  • 2. Overview So what is this project? What does it do? Basically this is a fire monitoring system, which detects if there is a fire by measuring the surrounding temperature. If it goes beyond a certain critical point, it alerts the user by sending a text alert to the phone number of the user so that he or she may be able to prevent any serious damage.
  • 3. Before we start with the project itself, let’s see what led us to take up this challenge to make this fire alarm system. • Smoke alarms provide a critical early warning of fire, allowing additional time to escape. National estimates of reported fires derived from the National Fire Incident Reporting System (NFIRS) and the National Fire Protection Association’s (NFPA’s) fire department survey show that in 2009-2013, fires in homes with no smoke alarms caused an average of 940 deaths per year (38% of home fire deaths). An additional 510 people per year (21% of home fire deaths) were fatally injured in fires in which smoke alarms were present but failed to operate. • Hardwired smoke alarms were more likely to operate than those powered solely by batteries. • The death rate per 100 reported fires was more than twice as high in homes with no or no working smoke alarms (1.18 deaths per 100 fires) as it was in fires with working smoke alarms (0.53 deaths per 100 fires). The lowest fire death rates were seen in homes with hardwired smoke alarms and sprinklers.
  • 4. So, we see that fire alarm systems are very much in need even in this technologically advanced era. Speaking of technological advancements, what comes to the mind first? Smartphones! So, why not integrate a fire alarm system with our smartphones? That way the system can warn us anytime there is a fire regardless of wherever we are at the moment. We do not have to be physically present at the site of the fire to prevent it! That is worderful! Now let’s get to the project itself.
  • 5. Equipments used • Arduino Uno • GSM Module • 16x2 LCD Display • LM 35 • Vero Board • 10k potentiometer • 12V AC Adapter • Resistors • Wires and jumper cords
  • 7. The main elements of the circuit • The Arduino • LM 35 • The GSM Module • The LCD display
  • 8. The Arduino It is an open-source microcontroller based kit for building digital devices and interactive objects that can sense and control objects in the physical world. It is based on microcontroller board designs, manufactured by several vendors, using various microcontrollers. These systems provide sets of digital and analog I/O pins that can be interfaced to various expansion boards ("shields") and other circuits. The boards feature serial communications interfaces, including USB on some models, for loading programs from personal computers. For programming the microcontrollers, the Arduino has a specific software associated with it which provides an integrated development environment (IDE) based on the Processing project, which includes support for the C and C++ programming languages. In this project this is the main workhorse. This controls the entire circuit and makes all the decisions.
  • 9.
  • 10. LM 35 • The LM35 is an integrated circuit sensor that can be used to measure temperature with an electrical output proportional to the temperature (in oC) • Why Use LM35s To Measure Temperature? » We can measure temperature more accurately than a using a thermistor. » The sensor circuitry is sealed and not subject to oxidation, etc. » The LM35 generates a higher output voltage than thermocouples and may not require that the output voltage be amplified.
  • 11. What Does An LM35 Look Like? Here it is.
  • 12. • What Does an LM35 Do? How does it work? » It has an output voltage that is proportional to the Celsius temperature. » The scale factor is .01V/oC » The LM35 does not require any external calibration or trimming and maintains an accuracy of +/-0.4 oC at room temperature and +/- 0.8 oC over a range of 0 oC to +100 oC. » Another important characteristic of the LM35 is that it draws only 60 micro amps from its supply and possesses a low self- heating capability. The sensor self-heating causes less than 0.1 oC temperature rise in still air. • The LM35 comes in many different packages, including the following. » TO-92 plastic transistor-like package, » T0-46 metal can transistor-like package » 8-lead surface mount SO-8 small outline package » TO-202 package. (Shown in the previous slide)
  • 13. The GSM Module This module is responsible for the communication part of the circuit. It takes information from the Arduino where to send information and what information is to be sent. It uses a GSM SIM card for communication purposes. It is basically just a MODEM which uses serial communication to interface with and need Hayes compatible AT commands for communication with the Arduino. The alert message and the phone number of the recipient is given by the user through the Arduino code. As soon as fire is detected an SMS will be sent to the recipient’s phone number from the SIM card inserted into the module.
  • 14. SIM Card slot Antenna This is what it looks like
  • 15. The LCD Display This is used for displaying the current status of the circuit and the actions taken by the circuit.
  • 16. Now let’s get to the working…
  • 17. • The LM 35 continuously monitors the temperature and sends that information to the Arduino. The temperature data is sent in the form of voltage. The scale factor of the LM 35 is 0.01V/ºC. • If a fire takes place, the temperature of the surrounding starts increasing. As soon as the temperature crosses a threshold value, the Arduino sends a signal to the GSM Module to do its job.
  • 18. • The GSM Module sends a text message to the user’s phone number from the SIM Card that is inserted into the module. The code run on the Arduino determines which number to send the message to, how many times the message needs to be sent, and some other details. • Now that the user has been alerted, the job of the system is over. It is now up to the user to take preventive measures.
  • 19. Setbacks and Modifications • No project is a success without setbacks. In this project, the GSM Module proved to be a major problem as during the testing, due to unregulated current fluctuations, the chip burned out and stopped working. • So, we had to modify the project a little bit, due to time constraints, we ultimately ended up making just a simple fire alarm with an alert speaker. To do this, we had to modify the Arduino code for the circuit to function without the GSM Module.
  • 20. The modifications to the code are as follows: • We created an extra function Alert() which is called as soon as “fire” is detected, which tells the speaker to sound the alarm. • As soon as the surrounding temperature restores back to normal, the condition in the code to check whether fire has occurred or not, becomes false and the noTone() function is called to stop the speaker.
  • 21. The modified Arduino Code #include <SoftwareSerial.h> #include<LiquidCrystal.h> LiquidCrystal lcd(12, 11, 5, 4, 3, 2); SoftwareSerial mySerial(9, 10); int sensor=A1; float temp_read,Temp_alert_val,Temp_shut_val; int Fire_Set; void setup() { pinMode(sensor,INPUT); mySerial.begin(9600); Serial.begin(9600); lcd.begin(16,2); delay(500); } void loop() { CheckFire(); CheckShutDown();}
  • 22. void CheckFire() { lcd.setCursor(0,0); lcd.print("Fire Scan-ON"); Temp_alert_val=CheckTemp(); if(Temp_alert_val>45) { Alert(); lcd.setCursor(0,1); lcd.print("Fire Alert!"); Fire_Set = 1; } } float CheckTemp() { temp_read=analogRead(sensor); // reads the sensor output (Vout of LM35) temp_read=temp_read*5; // converts the sensor reading to temperature temp_read=temp_read/10; // adds the decimal point return temp_read; // returns temperature value in degree celsius }
  • 26. Here is an animation showing the working of the project…
  • 27. The GSM Module receives info from the Arduino and sends the text alert to the user’s phone number The Arduino now tells the display to its job! LM 35 In case of a fire, The LM 35 senses a temperature rise… The LM 35 now passes the info on to the Arduino The Arduino then Processes the info and tells the other components to do their respective jobs! Fire Detected! SMS Sent!