Microcontroller › 8051 › GSM based smart information system for lost cards
- This topic has 10 replies, 7 voices, and was last updated 12 years, 9 months ago by Ashish Chakole.
-
AuthorPosts
-
January 17, 2012 at 8:18 pm #1735navneetaParticipant
How to make GSM based inform ation system for lost cards?
January 20, 2012 at 9:33 am #7050nikhiljainParticipantThe basics of GSm are vry well given in the site. Pls learn from there and then describe your project as to what you want to make.
January 20, 2012 at 1:38 pm #7059navneetaParticipantThe main aim of this project is to prevent forced ATM theft, using GSM technology.Consider a
scenario when you enter into an ATM to withdraw money for your need, and suddenly a thief
enters into the ATM with a knife or a pistol, and force you to withdraw the entire amount in
your account (considering the ATM has no security guard and is in a remote place). What you
can do? You can either fight with the thief or can give all the money to him.
Just think of an implementation which is helpful in this situation as, when you are forcibly
attempting to withdraw money, and you are entering a code number instead of your actual pin
code, and the ATM shows that you have no balance in your account (even if you have plenty).
And also imagine that as the thief tries to get out of the ATM, he will come to know that the
ATM is surrounded by armed police and there is no way to escape.
This can be done by just entering a code instead of the actual password.January 20, 2012 at 7:10 pm #7062AdeebParticipantWhy GSM, it is better to implement this in bank, any way ATM is connected to their servers…
January 20, 2012 at 7:11 pm #7063AdeebParticipantJanuary 22, 2012 at 2:00 pm #7070Syed AameerParticipantyes Adeeb is right.. i have heard that if u entered your password number in reverse order there will be an intimation for the bank that you are in trouble and your ATM card will be blocked immediately.. i am not sure but i have heard from my friend
January 27, 2012 at 12:12 pm #7083arun kumar yadavParticipanthiiiii…..
i made a c code to send a msg through gsm module. but i did not get desired result. plz check the code and help…
#include<reg51.h>
#define FREQ 12000000
#define baud 9600
#define spbrg_value (((FREQ/64)/baud)-1)sbit gas=P2^0;
sbit pir=P2^1;
sbit fire=P2^2;int i=0,j,k,temp;
unsigned char *sms_service=”AT+CSMS=1″;
unsigned char *sms_format=”AT+CMGF=1″;
unsigned char *sms_write=”AT+CMGS=”7520487033″”; // 10-Digit Mobile Number
unsigned char *sms=”gas leakage”;
unsigned char *smss=”moving body”;
unsigned char *smsss=”fire”;
unsigned char *sms_report=”SMS Sent…”;
unsigned char sms_terminate=0x1A;
unsigned char enter=0x0D;void delay(unsigned int msec) // Function for delay
{
int i,j;
for(i=0;i<msec;i++)
for(j=0; j<1275; j++);
}void init_serial() // Initialize serial port
{
TMOD=0x20; // Mode2
TH1=0xFD; //buad rate
SCON=0x50; // Serial mode=1 ,8-Bit data,1 Stop bit ,1 Start bit, Receiving on
TR1=1; // Start timer
}void tx_data(unsigned char str) // Transmit data function
{
SBUF=str; //Store data in SBUF
while(TI==0); //Wait till data transmits
TI=0;
}void gsm_cmd(unsigned char *string)
{
i=0;j=0;
while(string!=’