hello. I had done with set up gprs modem connect with at89c51 circuit(this is means I had done the hardware part, only left software).All I need i want to know sample of sending sms using AT command.
If you know , kindly send to my gamil: niyanfang21@gmail.com. Thank you so much.
OK Thank you so much.:smile:By the way, can I check with I will use gprs modem connect with AT89c51 without connecting with pc, can I have sample code for sending sms. I mean can I have exactly code for my project please.
hi, for hardware, I had done with hardware, but I do not know how to check whether it is working or not.
I am using gprs modem (Q2403), max232 with AT89C51. I connect max232 with AT89c51 in one circuit. but my lcd do not light when I connect with power. isn't right? Thank you.
i have simcom module...
the sequence of commands to be followed for sending sms is as follow...
at
ati //not necessary
at+cops?
at+cgmr // not necessary
at+creg? // this is to check whether your sim responding or not
at+cmgf=1
at+cmgs="+91-mobile no"
<type message
<ctrl-z
first try this through hyperterminal...look at response of each command then try to handle it using microcontroller....
i have simcom module...
the sequence of commands to be followed for sending sms is as follow...
at
ati //not necessary
at+cops?
at+cgmr // not necessary
at+creg? // this is to check whether your sim responding or not
at+cmgf=1
at+cmgs="+91-mobile no"
<type message
<ctrl-z
first try this through hyperterminal...look at response of each command then try to handle it using microcontroller....
Morning. thank you. Sorry I forgot to tell you that I go through the steps already as you mention. And it was working successful in hyper terminal. may I know how to handle micro-controller?
i have simcom module...
the sequence of commands to be followed for sending sms is as follow...
at
ati //not necessary
at+cops?
at+cgmr // not necessary
at+creg? // this is to check whether your sim responding or not
at+cmgf=1
at+cmgs="+91-mobile no"
<type message
<ctrl-z
first try this through hyperterminal...look at response of each command then try to handle it using microcontroller....
Morning. thank you. Sorry I forgot to tell you that I go through the steps already as you mention. And it was working successful in hyper terminal. may I know how to handle micro-controller?
while using these commands in hyperterminal you must have observed response of each step.....
u have to send one command and then wait till correct response is captured...
like this you have to send all commands...
while using these commands in hyperterminal you must have observed response of each step.....
u have to send one command and then wait till correct response is captured...
like this you have to send all commands...
Hi. Thank you for your reply. I was successful on sending sms on hyper terminal altready. but I am not sure how to check my AT89c51 microcontroller working with using AT command?? do you have any ideas? THANKS.
after you set baud rate u can communicate with gsm module using serial port....
now you transmit at commands and use serial interrupt for receiving response from module...
after you set baud rate u can communicate with gsm module using serial port....
now you transmit at commands and use serial interrupt for receiving response from module...