How to Read a LoRa Packet at The Transmitter end? #508
-
Hi, I've been using SX1278 modules successfully for quite some time. The Transmitter has an Arduino Nano and Receiver is NodeMCU. Suddenly the Packet Size at receiver end is appearing as Zero. I rechecked all wiring and everything seems to be fine. Here's the code in setup():
This is the code snippet from Transmitter:
Its quite simple. I'm sending some distance data. I'm checking at the Receiver end with this code:
Suddenly packetSize is coming Zero. I don't know if anything is really being sent from the Transmitter. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Try receiver callback example instead of parsePacket. ParsePacket is like hearing for short period then stop. So if no sending packet during ParsePacket then the size is 0. It is normal. |
Beta Was this translation helpful? Give feedback.
Try receiver callback example instead of parsePacket.
ParsePacket is like hearing for short period then stop.
So if no sending packet during ParsePacket then the size is 0. It is normal.