Hi everyone. I am a newbie to the forum as well as Arduino (electronics too).
I am trying to communicate with wavecom using arduino for basic gsm functionality. I am sure this is not the first post on this but none helped me. I tried connecting modem directly to the computer and it worked using PUTTY application.
1) rs232 / ttl converter

2) rs232 male to male connector

3)wavecom gsm modem(its fmade by fargo telecom and is wavecom compatible)

4)arduino

Connections

Arduino and rs232/ttl converter
- digital port 2 to tx of converter
- port 3 to rx of converter
- 5v n ground of converter left unconnected
Gsm modem led is blinking indicating connected to network.
Here's the arduino code
#include <SoftwareSerial.h>
SoftwareSerial mySerial(2,3); // RX, TX
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for Leonardo only
}
Serial.println("Goodnight moon!");
// set the data rate for the SoftwareSerial port
mySerial.begin(9600);
mySerial.println("ATD9620243969;");
}
void loop() // run over and over
{
if (mySerial.available())
Serial.write(mySerial.read());
if (Serial.available())
mySerial.write(Serial.read());
}
Gsm modem works with 9600 by default (or 115200 if set using AT command) .