Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GSM Modem send SMS

I have a GSM Modem manufactured by ZTE Corporation. I want to develop an application to send SMS messages via this device. The problem is I can't connect to the COM Port. All what I can see in the Device Manager is the HSPADataCard Diagnostics Interface on COM22 and HSPADataCard NMEA Device on COM24. I have tried to connect using putty on both ports but I failed.

I was wondering if I could use TAPI to send SMS. Any ideas on how to achieve my goal are welcomed.

Also, do you know any library for Delphi ?

like image 453
opc0de Avatar asked May 21 '12 09:05

opc0de


2 Answers

TurboPower AsyncPro has SMS component. It is not hard to send SMS in code, and some of the links might help you with this. However, for this to work you need to establish communication with your GSM modem via some COM port (or USB virtual COM port), and receive a reply for AT commands typed in your terminal application. If your GSM modem does not provide this, then all proposed methods will fail.

  • Where can i get free GSM libraries/components for delphi or python?
  • http://www.developershome.com/sms/howToSendSMSFromPC.asp
  • http://www.torry.net/quicksearchd.php?String=sms&Title=Yes
like image 30
avra Avatar answered Oct 31 '22 20:10

avra


The nrComm Lib provides possibilities for sending SMS messages over GSM modems.

Lots of other serial communication options and up to date with the most recent Delphi versions.

like image 139
LU RD Avatar answered Oct 31 '22 20:10

LU RD