Hi all
Im using the SIM 900 to detect an incoming call i used the following code but i can’t detect the incoming caller number
//Serial Relay - pour Arduino 1.0
//
// Arduino will patch a serial link between the computer
// and the GPRS Shield at 19200 bps 8-N-1
//Computer is connected to Hardware UART
//GPRS Shield is connected to the Software UART
#include <SoftwareSerial.h> // For Arduino 1.0
SoftwareSerial mySerial(7, 8); // For Arduino 1.0
void setup()
{
mySerial.begin(19200); // the GPRS baud rate
Serial.begin(19200); // the GPRS baud rate
}
void loop()
{
if(Serial.available())
{
char c = Serial.read();
mySerial.print(c);
}
else if(mySerial.available())
{
char c = mySerial.read();
Serial.println(c);
}
}
But the problem i can see only RING
Is there a way to detect the number (With AT command)
BR