Replies: 1 comment 6 replies
-
LoRa physical layer has no concept of "node address", you will have to implement that yourself. For example, a byte at the start of every packet inidicating its target node. All nodes in this setup would be constantly listening and receiving all packets sent in the network, and only process those intended for them. Since your nodes are running asynchronously, some sort of liste-before-talk feature could also be handy here - channel activity detection prior to any transmission should be enough to achieve that. Also, one thing I noticed in your sketch:
On Arduino Uno, |
Beta Was this translation helpful? Give feedback.
-
I wish to set up a Lora node system running with multiple arduino-SX1276 modules. I tried the SX127x_Transmit and SX127x_Receive templates, it worked perfectly. However, when I added one or more transmitter/receiver, some of the incoming data could be missing.
May I know it possible to add an address to every node, so that the message sent from one node wouldn't be interfering to the other nodes?
Beta Was this translation helpful? Give feedback.
All reactions