gpt4 book ai didi

Arduino Uno R3 + SIM900

转载 作者:行者123 更新时间:2023-12-02 01:23:08 25 4
gpt4 key购买 nike

我是一名尝试硬件的程序员

我正在尝试连接我在网上购买的 SIM900 扩展板。因此,我按照大量教程将 SIM 扩展板与 Arduino UNO 连接起来。

嗯,事情进展得不太顺利。

我在里面放了一个解锁的 sim,网灯 LED 在 3 秒内闪烁 3 次,这意味着它找到了网络。

正如许多人指出的那样,我还将引脚设置为 D7 和 D8。我也是用的9v 1A的电源。

但是当我尝试运行一个简单的基本示例代码时,它们无法正常执行。

我运行这个示例代码:

#include <SoftwareSerial.h>

SoftwareSerial GPRS(7, 8);

unsigned char buffer[64]; // buffer array for data receive over serial port
int count=0; // counter for buffer array

void setup()
{
GPRS.begin(19200);
Serial.begin(19200);
}

void loop()
{
if (GPRS.available())
{
while(GPRS.available())
{
buffer[count++]=GPRS.read();
if(count == 64)break;
}
Serial.write(buffer,count);
clearBufferArray();
count = 0;
}
if (Serial.available())
GPRS.write(Serial.read());
}

void clearBufferArray()
{
for (int i=0; i<count;i++)
{
buffer[i]=NULL;
}
}

然后我输入

AT

在串行监视器中选择了 19200 波特它打印这个 enter image description here(两个??)

似乎没有发送命令......

这是我构建东西的方式 enter image description here enter image description here

请帮忙!!我做错了什么?

最佳答案

我修好了!

我进入我的 GSM 库(位于库文件夹中),并在 GSM.cpp 中相应地更改了 rx 和 tx 引脚 7 和 8。感谢您的帮助!

关于Arduino Uno R3 + SIM900,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38778152/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com