Hii Maker's
Today we will make Emergency Neighbour notifier Using GSM 900l
The stuff needed to make it
Arduino Uno
Gsm Module
GSM module Sim900AA 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....
Those who are living alone and are in an Emergency situation like Low Blood Sugar(Hypoglycemia)Chest Pain/Heart AttackMajor CutsStrokesChoking etc.
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
High Quality PCBs From NEXTPCB
High Quality PCBs From NEXTPCBNextpcb 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.
Comments