之前紀念這個問題的重複,請注意,我已經嘗試this,& thisArduino的GSM GPS盾不做GSM_READY檢查
我買了一個Arduino UNO R3 &一個SIM808 GSM/GPS最近盾牌。屏蔽的RX連接到Arduino的引腳11,TX到引腳10,兩個GND相互連接。我通過USB &將我的Arduino連接到了我的電腦上,屏蔽層通過12V適配器連接到外部電源。另外,我已經將3.3V的Arduino連接到屏蔽的Vcc。
以下是我曾經用過的草圖:這裏
// Include the GSM library
#include <GSM.h>
#define PINNUMBER ""
// initialize the library instance
GSM gsmAccess;
GSM_SMS sms;
void setup() {
// initialize serial communications and wait for port to open:
Serial.begin(9600);
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
Serial.println("SMS Messages Sender");
// connection state
boolean notConnected = true;
// Start GSM shield
// If your SIM has PIN, pass it as a parameter of begin() in quotes
while (notConnected) {
if (gsmAccess.begin(PINNUMBER) == GSM_READY) {
notConnected = false;
} else {
Serial.println("Not connected");
delay(1000);
}
}
Serial.println("GSM initialized");
}
void loop() {
Serial.print("Enter a mobile number: ");
char remoteNum[20]; // telephone number to send sms
readSerial(remoteNum);
Serial.println(remoteNum);
// sms text
Serial.print("Now, enter SMS content: ");
char txtMsg[200];
readSerial(txtMsg);
Serial.println("SENDING");
Serial.println();
Serial.println("Message:");
Serial.println(txtMsg);
// send the message
sms.beginSMS(remoteNum);
sms.print(txtMsg);
sms.endSMS();
Serial.println("\nCOMPLETE!\n");
}
/*
Read input serial
*/
int readSerial(char result[]) {
int i = 0;
while (1) {
while (Serial.available() > 0) {
char inChar = Serial.read();
if (inChar == '\n') {
result[i] = '\0';
Serial.flush();
return 0;
}
if (inChar != '\r') {
result[i] = inChar;
i++;
}
}
}
}
問題是一樣的,在那些鏈接的帖子提及。
條件if (gsmAccess.begin(PINNUMBER) == GSM_READY)
從未得到執行。 else
零件也不執行。
串行監視器永遠不會過去SMS消息發送者。
請注意,我用的印度Airtel,我有一個完全激活數據計劃& PIN號碼已被更改爲0000
會很感激,如果有人能提出一些有幫助的。
感謝您的時間!