0

我正在使用需要 5V 电源的 GSM 900A 调制解调器。我将它连接到 Arduino UNO。我通过 arduino 5V 和 GND 引脚为调制解调器供电。我正在将 RXD 引脚连接到 arduino TXD 引脚的 TX(引脚 1)到 arduino 的 RX(引脚 0)和 GND 到 arduino 的 GND,即引脚 14。我正在运行基本示例代码,但 GSM 没有响应。我也尝试过其他软件,如 Putty,但我无法编写任何 AT 命令请帮助我。当我使用此代码测试调制解调器时:

/*

 This example tests to see if the modem of the
 GSM shield is working correctly. You do not need
 a SIM card for this example.

 Circuit:
 * GSM shield attached

 Created 12 Jun 2012
 by David del Peral
 modified 21 Nov 2012
 by Tom Igoe

 http://www.arduino.cc/en/Tutorial/GSMToolsTestModem

 This sample code is part of the public domain

 */

// libraries
#include <GSM.h>

// modem verification object
GSMModem modem;

// IMEI variable
String IMEI = "";

void setup() {
  // initialize serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

  // start modem test (reset and check response)
  Serial.print("Starting modem test...");
  if (modem.begin()) {
    Serial.println("modem.begin() succeeded");
  } else {
    Serial.println("ERROR, no modem answer.");
  }
}

void loop() {
  // get modem IMEI
  Serial.print("Checking IMEI...");
  IMEI = modem.getIMEI();

  // check IMEI response
  if (IMEI != NULL) {
    // show IMEI in serial monitor
    Serial.println("Modem's IMEI: " + IMEI);
    // reset modem to check booting:
    Serial.print("Resetting modem...");
    modem.begin();
    // get and check IMEI one more time
    if (modem.getIMEI() != NULL) {
      Serial.println("Modem is functoning properly");
    } else {
      Serial.println("Error: getIMEI() failed after modem.begin()");
    }
  } else {
    Serial.println("Error: Could not get IMEI");
  }
  // do nothing:
  while (true);
}

我在串行监视器上以 9600 波特率获得此输出:

开始调制解调器测试...错误,没有调制解调器应答。Checking IMEI...Modem's IMEI: 0 Resetting modem...Modem 工作正常

4

1 回答 1

0

我认为这与您的电源有关,请尝试使用输出 500mA 至 1A 电流的适配器。

于 2017-03-29T09:46:03.000 回答