LoRaMultipleCommunicationInterrupt.ino 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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 uses interrup method check
  9. the 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. The default interrupt pin in SX1276/8(DIO0) connected to ESP32's GPIO26
  13. Note: while sending, Heltec.LoRa radio is not listening for incoming messages.
  14. Note2: when using the callback method, you can't use any of the Stream
  15. functions that rely on the timeout, such as readString, parseInt(), etc.
  16. by Aaron.Lee from HelTec AutoMation, ChengDu, China
  17. 成都惠利特自动化科技有限公司
  18. www.heltec.cn
  19. this project also realess in GitHub:
  20. https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series
  21. */
  22. #include "heltec.h"
  23. #define BAND 433E6 //you can set band here directly,e.g. 868E6,915E6
  24. byte localAddress = 0xBB; // address of this device
  25. byte destination = 0xFF; // destination to send to
  26. String outgoing; // outgoing message
  27. byte msgCount = 0; // count of outgoing messages
  28. long lastSendTime = 0; // last send time
  29. int interval = 2000; // interval between sends
  30. void setup()
  31. {
  32. //WIFI Kit series V1 not support Vext control
  33. Heltec.begin(true /*DisplayEnable Enable*/, true /*Heltec.LoRa Disable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/);
  34. LoRa.onReceive(onReceive);
  35. LoRa.receive();
  36. Serial.println("Heltec.LoRa init succeeded.");
  37. }
  38. void loop()
  39. {
  40. if (millis() - lastSendTime > interval)
  41. {
  42. String message = "Hello World!"; // send a message
  43. sendMessage(message);
  44. Serial.println("Sending " + message);
  45. lastSendTime = millis(); // timestamp the message
  46. interval = random(2000) + 1000; // 2-3 seconds
  47. LoRa.receive(); // go back into receive mode
  48. }
  49. }
  50. void sendMessage(String outgoing)
  51. {
  52. LoRa.beginPacket(); // start packet
  53. LoRa.write(destination); // add destination address
  54. LoRa.write(localAddress); // add sender address
  55. LoRa.write(msgCount); // add message ID
  56. LoRa.write(outgoing.length()); // add payload length
  57. LoRa.print(outgoing); // add payload
  58. LoRa.endPacket(); // finish packet and send it
  59. msgCount++; // increment message ID
  60. }
  61. void onReceive(int packetSize)
  62. {
  63. if (packetSize == 0) return; // if there's no packet, return
  64. // read packet header bytes:
  65. int recipient = LoRa.read(); // recipient address
  66. byte sender = LoRa.read(); // sender address
  67. byte incomingMsgId = LoRa.read(); // incoming msg ID
  68. byte incomingLength = LoRa.read(); // incoming msg length
  69. String incoming = ""; // payload of packet
  70. while (LoRa.available()) // can't use readString() in callback
  71. {
  72. incoming += (char)LoRa.read(); // add bytes one by one
  73. }
  74. if (incomingLength != incoming.length()) // check length for error
  75. {
  76. Serial.println("error: message length does not match length");
  77. return; // skip rest of function
  78. }
  79. // if the recipient isn't this device or broadcast,
  80. if (recipient != localAddress && recipient != 0xFF)
  81. {
  82. Serial.println("This message is not for me.");
  83. return; // skip rest of function
  84. }
  85. // if message is for this device, or broadcast, print details:
  86. Serial.println("Received from: 0x" + String(sender, HEX));
  87. Serial.println("Sent to: 0x" + String(recipient, HEX));
  88. Serial.println("Message ID: " + String(incomingMsgId));
  89. Serial.println("Message length: " + String(incomingLength));
  90. Serial.println("Message: " + incoming);
  91. Serial.println("RSSI: " + String(LoRa.packetRssi()));
  92. Serial.println("Snr: " + String(LoRa.packetSnr()));
  93. Serial.println();
  94. }