LoRaMultipleCommunication.ino 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. Heltec.LoRa Multiple Communication
  3. This example provide a simple way to achieve one to multiple devices
  4. communication.
  5. Each devices send datas in broadcast method. Make sure each devices
  6. working in the same BAND, then set the localAddress and destination
  7. as you want.
  8. Sends a message every half second, and polls continually
  9. for new incoming messages. Implements a one-byte addressing scheme,
  10. with 0xFD as the broadcast address. You can set this address as you
  11. want.
  12. Note: while sending, Heltec.LoRa radio is not listening for incoming messages.
  13. by Aaron.Lee from HelTec AutoMation, ChengDu, China
  14. 成都惠利特自动化科技有限公司
  15. www.heltec.cn
  16. this project also realess in GitHub:
  17. https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series
  18. */
  19. #include "heltec.h"
  20. #define BAND 433E6 //you can set band here directly,e.g. 868E6,915E6
  21. String outgoing; // outgoing message
  22. byte localAddress = 0xBB; // address of this device
  23. byte destination = 0xFD; // destination to send to
  24. byte msgCount = 0; // count of outgoing messages
  25. long lastSendTime = 0; // last send time
  26. int interval = 2000; // interval between sends
  27. void setup()
  28. {
  29. //WIFI Kit series V1 not support Vext control
  30. Heltec.begin(true /*DisplayEnable Enable*/, true /*Heltec.LoRa Enable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/);
  31. Serial.println("Heltec.LoRa Duplex");
  32. }
  33. void loop()
  34. {
  35. if (millis() - lastSendTime > interval)
  36. {
  37. String message = "Hello,I'm coming!"; // send a message
  38. sendMessage(message);
  39. Serial.println("Sending " + message);
  40. lastSendTime = millis(); // timestamp the message
  41. interval = random(2000) + 1000; // 2-3 seconds
  42. }
  43. // parse for a packet, and call onReceive with the result:
  44. onReceive(LoRa.parsePacket());
  45. }
  46. void sendMessage(String outgoing)
  47. {
  48. LoRa.beginPacket(); // start packet
  49. LoRa.write(destination); // add destination address
  50. LoRa.write(localAddress); // add sender address
  51. LoRa.write(msgCount); // add message ID
  52. LoRa.write(outgoing.length()); // add payload length
  53. LoRa.print(outgoing); // add payload
  54. LoRa.endPacket(); // finish packet and send it
  55. msgCount++; // increment message ID
  56. }
  57. void onReceive(int packetSize)
  58. {
  59. if (packetSize == 0) return; // if there's no packet, return
  60. // read packet header bytes:
  61. int recipient = LoRa.read(); // recipient address
  62. byte sender = LoRa.read(); // sender address
  63. byte incomingMsgId = LoRa.read(); // incoming msg ID
  64. byte incomingLength = LoRa.read(); // incoming msg length
  65. String incoming = "";
  66. while (LoRa.available())
  67. {
  68. incoming += (char)LoRa.read();
  69. }
  70. if (incomingLength != incoming.length())
  71. { // check length for error
  72. Serial.println("error: message length does not match length");
  73. return; // skip rest of function
  74. }
  75. // if the recipient isn't this device or broadcast,
  76. if (recipient != localAddress && recipient != 0xFF) {
  77. Serial.println("This message is not for me.");
  78. return; // skip rest of function
  79. }
  80. // if message is for this device, or broadcast, print details:
  81. Serial.println("Received from: 0x" + String(sender, HEX));
  82. Serial.println("Sent to: 0x" + String(recipient, HEX));
  83. Serial.println("Message ID: " + String(incomingMsgId));
  84. Serial.println("Message length: " + String(incomingLength));
  85. Serial.println("Message: " + incoming);
  86. Serial.println("RSSI: " + String(LoRa.packetRssi()));
  87. Serial.println("Snr: " + String(LoRa.packetSnr()));
  88. Serial.println();
  89. }