0

我尝试允许使用 2 个 Arduino Unos、2 个 LORA 芯片 (SX1278 433MHz)、2 个天线和 2 个 Arduino IDE 发送和接收数据。

问题在于接收数据命令。

这是发送命令的代码:

#include <SPI.h>
#include <LoRa.h>

int counter = 0;

const int ss = 10;          
const int reset = 9;     
const int dio0 = 2;

void setup() {
  Serial.begin(9600);
  LoRa.begin(433E6);
  LoRa.setPins(ss, reset, dio0);
  while (!Serial);

  Serial.println("LoRa Sender");

}

void loop() {
  Serial.print("Sending packet: ");
  Serial.println(counter);

  // send packet
  LoRa.beginPacket();
  LoRa.print("hello ");
  LoRa.print(counter);
  LoRa.endPacket();

  counter++;

  delay(5000);
}

在串行监视器上,我成功发送包,但没有接收。这是接收代码:

#include <SPI.h>
#include <LoRa.h>

const int ss = 10;        
const int reset = 9;       
const int dio0 = 2;

void setup() {
  Serial.begin(9600);
  LoRa.begin(433E6);
  LoRa.setPins(ss, reset, dio0);
  while (!Serial);

  Serial.println("LoRa Receiver");

}

void loop() {
  // try to parse packet
  int packetSize = LoRa.parsePacket();
  if (packetSize) {
    // received a packet
    Serial.print("Received packet '");

    // read packet
    while (LoRa.available()) {
      Serial.print((char)LoRa.read());
      Serial.print("hello ");
    }

    // print RSSI of packet
    Serial.print("' with RSSI ");
    Serial.println(LoRa.packetRssi());
  }
}

我使用了来自这个 git 页面的连接说明: https ://github.com/sandeepmistry/arduino-LoRa

4

2 回答 2

1

为了使这个板子工作,我必须显式地初始化 SPI

SPI.begin(/*sck*/ 5, /*miso*/ 19, /*mosi*/ 27, /*ss*/ cs);

对你来说可能是一样的。此外,您应该正确初始化 Lora:

while (!LoRa.begin(433E6)) {
    Serial.print(".");
    delay(500);
}
Serial.println("LoRa Initializing OK!");

使用您发布的代码,您真的不知道它是否正确初始化或者它是否实际发送任何数据。

于 2018-12-20T08:37:17.733 回答
0

首先,我没有使用过 Lora 图书馆。我使用 SX1278 libaray。所以我可以帮你。首先这里是 libaray - Lora SX1278.h 库的链接

现在你可能会问我为什么不使用原始 GitHub 存储库中的库。好吧,我遇到了那个图书馆的问题,问题是这样的:

修改了 sx1278::getPacket() 库函数以稳定 Lora 接收功能。有一个错误导致 esp 恐慌。未检查从 REG_FIFO 寄存器读取的有效载荷长度的有效值,这导致读取 REG_FIFO 寄存器的次数超过 65000 次。此外,在此函数的耗时部分中添加了 yield()。

这就是我使用这个自定义库的原因。无论如何,对您来说:您可以使用此功能发送数据包:

T_packet_state = sx1278.sendPacketTimeoutACK(ControllerAddress, message); //T_packet_state is 0 if the packet data is sent successful.

还要接收数据使用此功能:

R_packet_state = sx1278.receivePacketTimeoutACK(); //R_packet_state is 0 if the packet data is received successfully.

在代码的开头只定义这几件事:

//Lora SX1278:
#define LORA_MODE             10          //Add your suitable mode from the library
#define LORA_CHANNEL          CH_6_BW_125 //Ch number and Bandwidth
#define LORA_ADDRESS          3           //Address of the device from which you will send data
uint8_t ControllerAddress = 5;            //Address of receiving end device

我在 StackOverflow 上的第一个不错的答案。手指交叉

于 2018-07-30T05:06:18.530 回答