新しい Sim900 を入手し、Arduino Uno に接続しました。以下のコードを使用して、自分にテキストを送信しました。セルでテキストを受信しましたが、シリアル モニターでエコーを受信しませんでした (つまり、「OK」)。RX/TX ピンと異なるボー レートを交換しようとしましたが、成功しませんでした。
void setup()
{
Serial.begin(9600); //Baud rate of the GSM/GPRS Module
Serial.println("");
delay(2000);
Serial.println("AT+CMGF=1");
delay(1000);
Serial.println("AT+CMGS=\"+120########\""); //Number to which you want to send the sms
delay(1000);
Serial.print("This is a test."); //The text of the message to be sent
delay(1000);
Serial.write(0x1A); // send CTRL - z to end message
Serial.write(0x0D); // Carriage Return
Serial.write(0x0A); // Line Feed
delay(5000);
}
void loop()
{
}