Sending SMS to any Mobile thru Visual C++ code
-
I'm into new assignment of sending SMS to mobile phones, I'm just a beginner to this, so please advice me in this regard or send a Visual C++ code to do this and the hardware requirements in detail. my name is junnybol, and i'm from curacao
Unfortunately, all free C/C++ libraries for mobile communications, that I know, are designed only for particular type and connection. So I'd like to know: 1. What type of mobile do you have (Siemens, Nokia...?) 2. How do you connect to the mobile (serial line, USB, Bluetooth?) Robert-Antonio
-
I'm into new assignment of sending SMS to mobile phones, I'm just a beginner to this, so please advice me in this regard or send a Visual C++ code to do this and the hardware requirements in detail. my name is junnybol, and i'm from curacao
SMS sending is done via AT commands specified in the GSM 07.05 norm (google for that). Implementing this yourself is not terribly difficult, but it'll take you some time. Googling for "GSM 07.05 source code" yields several results, among them Tutanhamon's article Send SMS via RS232 or SMS Gateway, in C# [^]. Although it is in C#, I guess it won't be hard to translate the interesting stuff to C++. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo Want a Boost forum in Code Project? Vote here[^]!
-
Unfortunately, all free C/C++ libraries for mobile communications, that I know, are designed only for particular type and connection. So I'd like to know: 1. What type of mobile do you have (Siemens, Nokia...?) 2. How do you connect to the mobile (serial line, USB, Bluetooth?) Robert-Antonio
The sending of sms must be through a gsm modem that is connected to de com-poort. And one of the important things is that every mobile can receive a sms via my application. What i know is that u need to use AT-commands, but how in my application i don't know.:confused: X| my name is junnybol, and i'm from curacao
-
The sending of sms must be through a gsm modem that is connected to de com-poort. And one of the important things is that every mobile can receive a sms via my application. What i know is that u need to use AT-commands, but how in my application i don't know.:confused: X| my name is junnybol, and i'm from curacao
Com-port => you need the serial communication library. There's plenty of free c++ serial communication libraries, try google. For detailed info about AT commands see documentation for partial type of your mobile phone. For example, look at scmxx library for communicating with Siemens mobiles. You can read many useful commands from the scmxx source code :). Good luck! Robert-Antonio "A piece of paper is an ink-lined plane. An inclined plane is slope up. A slow pup is a lazy dog. Q.E.D.: A piece of paper is a lazy dog."