Daini Posted November 14, 2020 Report Posted November 14, 2020 Hii Maker's Today we will make Emergency Neighbour notifier Using GSM 900l The stuff needed to make it 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 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. ... 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. 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 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 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
David Richard Posted January 16, 2023 Report Posted January 16, 2023 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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now