Jump to content

How To Make Emergency Neighbour notifier


Daini

Recommended Posts

Hii Maker's

Today we will make Emergency Neighbour notifier Using GSM 900l

The stuff needed to make it

Arduino Uno

Arduino uno
Arduino uno
 

Gsm Module

GSM module Sim900A
A GSM module or a GPRS module is a chip or circuit that will be used to establish communication between a mobile device or a computing machine and a GSM or GPRS system

images_-_2020-11-12t212107_914_4bYS9Ww0n
 

Push switch

A Push Button switch

is a type of

switch

which consists of a simple electric mechanism or air

switch

epending on model they could operate with momentary or latching action function. ...

A Push Button switch is a type of switch which consists of a simple electric mechanism or air switch mechanism to turn something on or off. Depending on model they could operate with momentary or latching action function. ...

images_-_2020-11-12t212601_342_rmxPYQsEi
 

 

 

 

 

Arduino, GSM module and a simple push button and other components this project is possible. The mobile number and Emergency alert message is pre-defined and stored in the Arduino. When the push button in pressed Emergency Alert message is sent to the respective numbers. ..

Those who are living alone and are in an Emergency situation like
Low Blood Sugar(Hypoglycemia)
Chest Pain/Heart Attack
Major Cuts
Strokes
Choking etc.

 
 
 
car_bzwYZajndi.jpg?auto=compress%2Cforma
 
1 / 3
 

2. Theft situation/Intruder

Code :-

int state = 0;
const int pin = 9;
void setup()
{
Serial.begin(9600);
}
void loop()
{
if (digitalRead(pin) == HIGH && state == 0) {
Serial.print("\r");
delay(100);
Serial.print("AT+CMGF=1\r");
delay(100);
Serial.print("AT+CMGS=\"+aabbbbbbbbbb\"\r");
Serial.print("AT+CMGS=\"+aacccccccccc\"\r");
Serial.print("AT+CMGS=\"+aacccccccccc\"\r");//International no.
delay(100);
Serial.print("HELP,Flat No 201-A");//Emergeny message
delay(100);
Serial.write(0x1A);
delay(100);
state = 1;
}
if (digitalRead(pin) == LOW && state == 1) {
state = 0;
}
}

 

 

 

High Quality PCBs From NEXTPCB

fe861nqk2v2h1c6_AmpBwmqCVT.jpg?auto=compress%2Cformat&w=740&h=555&fit=max
 
Nextpcb Is one of the best Online PCB manufacturing Company from where you can order PCBs online without any hassle. The company fast lead time : as fast as 24 hours. With their high tech machinery and automated work stream, they can manufacture huge quantities of high-class PCBs within hours.
Nextpcb can Develop PCBs of various complexity . They Develop simple and cheap PCBs with single layer Board For hobbyists and enthusiasts as well as complex multi layer board for high standard industrial applications NextPcb work with Large product Manufacturers And may Be the PCB of devices you are using such as laptop or smartphone were made at this factory.

High Quality PCBs From NEXTPCB

 

 

Nextpcb PCB Sample
Nextpcb PCB Sample
 

 

Nextpcb Is one of the best Online PCB manufacturing Company from where you can order PCBs online without any hassle. The company fast lead time : as fast as 24 hours. With their high tech machinery and automated work stream, they can manufacture huge quantities of high-class PCBs within hours.

Nextpcb can Develop PCBs of various complexity . They Develop simple and cheap PCBs with single layer Board For hobbyists and enthusiasts as well as complex multi layer board for high standard industrial applications NextPcb work with Large product Manufacturers And may Be the PCB of devices you are using such as laptop or smartphone were made at this factory.

Code 

code_for_gsm.ino.txt

Link to comment
Share on other sites

  • 2 years later...

Once, one of our neighbors moved in and loaded up the furniture and stuff, which made him popular. Then there was a loud noise and a lot of people thought one of the pieces of furniture had fallen off, so no one checked. But out of curiosity, I went to the balcony and to my surprise the auto rickshaw had an accident and the driver was buried under the vehicle. After seeing it, I ran to the place with my father and moved the car. After 5 minutes, I was surprised that few people had gathered. So I came up with a project that lets people know their neighbors at the push of a button. Many people today are so busy with work that they can't check their surroundings, and people sometimes get discouraged or scared and don't know what to do next. With this in mind, I created a simple interface project to notify neighbors in case of an emergency. With the help of Arduino, GSM module, simple push button and other things, this project is possible. The mobile phone number and emergency alert message are predefined and stored in the Arduino. When a push button is pressed, an emergency alert message is sent to that number.
People in emergency situations such as the elderly live alone 

  • Low blood sugar (hypoglycemia) 
  • chest pain / heart attack 
  • big haircut 
  • kick 

breathing, etc.
 2. Theft/intruder incident  
 3. or unforeseen events other than the events mentioned above or natural disasters or environmental disasters.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...