2

我有 Arduino Leonardo 和Seeedstudio GPRS Shield v2.0。他们俩都无缝地工作。按照此处有关主要 gprs 屏蔽链接的教程,我已成功将以下代码编译为 arduino:

//Serial Relay - Arduino will patch a 
//serial link between the computer and the GPRS Shield
//at 19200 bps 8-N-1
//Computer is connected to Hardware UART
//GPRS Shield is connected to the Software UART 


#include <SoftwareSerial.h>


SoftwareSerial GPRS(7, 8);
unsigned char buffer[64]; // buffer array for data recieve over serial port
int count=0;              // counter for buffer array 
void setup()
{
  GPRS.begin(19200);      // the GPRS baud rate   
  Serial.begin(19200);    // the Serial port of Arduino baud rate.

}

void loop()
{
  if (GPRS.available())            // if date is comming from softwareserial port ==> data is comming from gprs shield
   {
    while(GPRS.available())        // reading data into char array 
    {
      buffer[count++]=GPRS.read(); // writing data into array
      if(count == 64)break;
  }
    Serial.write(buffer,count);    // if no data transmission ends, write buffer to hardware serial port
    clearBufferArray();            // call clearBufferArray function to clear the storaged data from the array
    count = 0;                     // set counter of while loop to zero
  }
  if (Serial.available())          // if data is available on hardwareserial port ==> data is comming from PC or notebook
    GPRS.write(Serial.read());     // write it to the GPRS shield
 }
void clearBufferArray()            // function to clear buffer array
{
  for (int i=0; i<count;i++)
     { buffer[i]=NULL;}            // clear all index of array with command NULL
}

上面的代码将来自串行的 AT 命令作为输入并将其传递给 gprs 模块。所以,我可以输入类似:“ATD + +1XXXXXXXX”的代码来呼叫号码,并且它起作用了。问题是我无法从 gprs 模块序列中得到响应,之后它只是空白。我读到对串行终端的响应应该是:“OK”。我的问题是:

一个。有什么我错过的吗?我想将响应写入终端。

湾。我想发出http请求,有人有经验怎么做吗?我的意思是这个 gprs 开放网站 blablablabla.com/cs/blabla.php?name=blabla

谢谢之前

4

3 回答 3

0

我绝不是这方面的专家,但是……我从来没有看到可以打印或显示数据的行。

例子:

假设您建立了类似变量的东西:int inByte=0在开始时

像你的buffer[count++]or BufferArray(),我有点不熟悉

然后你可以使用检索数据

Serial.println(inByte); 

或者

GPRS.println(inByte);

这将在您的 COM 端口窗口中显示此信息

所以....?就像是

Serial.println(buffer[count++]);

或者

GPRS.println(buffer[count++]); 

两者都将编译 BTW

于 2014-03-14T17:03:36.860 回答
0

带有 Leonardo 的 7 针示例不起作用。使用 10 针(需要连接电线而不是跳线)工作正常。

于 2015-04-13T05:14:11.977 回答
0

您的 SIM900 可能处于“抑制结果代码”模式。在这种模式下,它根本不会发送结果代码,例如“OK”。

尝试向其发送“ATQ0”命令以使其传输结果代码。(查看 AT 命令手册中的 ATQ 命令)。

于 2014-02-06T06:13:46.580 回答