LoRaSetSyncWord.ino 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. Heltec.LoRa Duplex communication with Sync Word
  3. Sends a message every half second, and polls continually
  4. for new incoming messages. Sets the Heltec.LoRa radio's Sync Word.
  5. Spreading factor is basically the radio's network ID. Radios with different
  6. Sync Words will not receive each other's transmissions. This is one way you
  7. can filter out radios you want to ignore, without making an addressing scheme.
  8. See the Semtech datasheet, http://www.semtech.com/images/datasheet/sx1276.pdf
  9. for more on Sync Word.
  10. by Aaron.Lee from HelTec AutoMation, ChengDu, China
  11. 成都惠利特自动化科技有限公司
  12. www.heltec.cn
  13. this project also realess in GitHub:
  14. https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series
  15. */
  16. #include "heltec.h"
  17. #define BAND 433E6 //you can set band here directly,e.g. 868E6,915E6
  18. byte msgCount = 0; // count of outgoing messages
  19. int interval = 2000; // interval between sends
  20. long lastSendTime = 0; // time of last packet send
  21. void setup()
  22. {
  23. //WIFI Kit series V1 not support Vext control
  24. Heltec.begin(true /*DisplayEnable Enable*/, true /*Heltec.Heltec.Heltec.LoRa Disable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/);
  25. LoRa.setSyncWord(0xF3); // ranges from 0-0xFF, default 0x34, see API docs
  26. Serial.println("Heltec.LoRa init succeeded.");
  27. }
  28. void loop()
  29. {
  30. if (millis() - lastSendTime > interval)
  31. {
  32. String message = "HeHeltec.LoRa World! "; // send a message
  33. message += msgCount;
  34. sendMessage(message);
  35. Serial.println("Sending " + message);
  36. lastSendTime = millis(); // timestamp the message
  37. interval = random(2000) + 1000; // 2-3 seconds
  38. msgCount++;
  39. }
  40. // parse for a packet, and call onReceive with the result:
  41. onReceive(LoRa.parsePacket());
  42. }
  43. void sendMessage(String outgoing)
  44. {
  45. LoRa.beginPacket(); // start packet
  46. LoRa.print(outgoing); // add payload
  47. LoRa.endPacket(); // finish packet and send it
  48. msgCount++; // increment message ID
  49. }
  50. void onReceive(int packetSize)
  51. {
  52. if (packetSize == 0) return; // if there's no packet, return
  53. // read packet header bytes:
  54. String incoming = "";
  55. while (LoRa.available())
  56. {
  57. incoming += (char)LoRa.read();
  58. }
  59. Serial.println("Message: " + incoming);
  60. Serial.println("RSSI: " + String(LoRa.packetRssi()));
  61. Serial.println("Snr: " + String(LoRa.packetSnr()));
  62. Serial.println();
  63. }