Dear,
Sorry, I'm newbie for ARM maple. I'm trying GPRS Shield using SIM900. I try this code:
void setup()
{
Serial1.begin(19200);
delay(500);
Serial1.println("AT+IPR=19200");
delya(500);
}
void loop()
{
Serial1.println("AT+CMGF=1");
delay(500);
Serial1.println("AT+CMGS="/+6281286692xxx/"");
delay(500);
Serial1.print("Hello");
delay(2000);
Serial1.print(0x1A,BYTE);
delay(2000);
}
But, my code can't working. Any mistake with my code?
Thanks,
Umam