I'm new to arduino and everything related to it! I'm trying to use a SIM900 shield with the arduino. You can see the code and the monitor in my picture. It responds with a bunch of numbers which makes no sense. I'm trying to read my sms storage. Can someone give me some insight in what i might be doing wrong?
void setup()
{
Sim900Serial.begin(115200); // the GPRS baud rate
delay(2000);
Sim900Serial.println("AT+IPR=19200"); // Set the baud rate
delay(500);
Sim900Serial.begin(19200); // the GPRS baud rate
delay(1000);
}
void loop()
{
Sim900Serial.println("ATD***********;");//'*'instead the phone number you want to dial
while(1);
}
I'm following a guide that the seller provided when i bought the product. They do the same in every example. I'm new to arduino and c++. I know the basics of baud rate. What am i supposed to do?
The code assumes that the module is always set by default to 115200 bauds at starts, issues an AT command at the speed to change baud rate to 19200 and thus adjusts the baud rate to that new value afterwards
So question is does this match your hardware défaut ?
J-M-L:
The code assumes that the module is always set by default to 115200 bauds at starts, issues an AT command at the speed to change baud rate to 19200 and thus adjusts the baud rate to that new value afterwards
So question is does this match your hardware défaut ?