GSM modem interfacing with Propeller
fliq50
Posts: 5
Hi all...
i want to ask...
can this Serial to Propeller Connection (http://www.parallax.com/Portals/0/Downloads/docs/prod/prop/SerialtoPropeller.pdf) interfacing with GSM modem? can it communicate each other?
sorry for my poor english... thanks...
i want to ask...
can this Serial to Propeller Connection (http://www.parallax.com/Portals/0/Downloads/docs/prod/prop/SerialtoPropeller.pdf) interfacing with GSM modem? can it communicate each other?
sorry for my poor english... thanks...
Comments
This is because the circuit you link to is designed to connect the Prop to a PC, which is "DTE" or Data Terminal Equipment. A modem is likely to be "DCE" or Data CommunicationEquipment, which means you need to swap over the pairs (like a Null modem does).
I'm not sure about the reset signal (from Pin 4 on the ) - it depends on your application.
i will try for my project.
I already communicate the prob and the gsm modem. So the problem I face is to sent message to the gsm modem. The problem start with the quotation mark ( " ). How to call the quotation mark in the propeller? I try and test but seem goes wrong.. the Parallax Serial Terminal shows
there also goes wrong with the control_z program to sent the message in the gsm modem...
thanks again
this is my test program by reference the Jay Kickliter program...
Serial.str(string(QUOTATION_MARK))
etc
That seems to work when I do something similar
cheers
tubular
U save my day...
it really work...
now I'm getting excited with the propeller...
The GSM modules can be frustrating; so much power, but you have to know what commands to use and in which order.
I'm use the at-command cmgr=1. So, when the gsm modem replay to the propeller, how do I know which memory in Propeller it store the message that I sent? and how to call it?
Thanks in advance..