LoRaReceiverInterrupt.ino 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. Uses interrup method check the new incoming messages, and print via serial
  3. in 115200 baud rate.
  4. The default interrupt pin in SX1276/8(DIO0) connected to ESP32's GPIO26
  5. by Aaron.Lee from HelTec AutoMation, ChengDu, China
  6. 成都惠利特自动化科技有限公司
  7. www.heltec.cn
  8. this project also realess in GitHub:
  9. https://github.com/Heltec-Aaron-Lee/WiFi_Kit_series
  10. */
  11. #include "heltec.h"
  12. #define BAND 433E6 //you can set band here directly,e.g. 868E6,915E6
  13. void setup() {
  14. //WIFI Kit series V1 not support Vext control
  15. Heltec.begin(true /*DisplayEnable Enable*/, true /*LoRa Disable*/, true /*Serial Enable*/, true /*PABOOST Enable*/, BAND /*long BAND*/);
  16. // register the receive callback
  17. LoRa.onReceive(onReceive);
  18. // put the radio into receive mode
  19. LoRa.receive();
  20. }
  21. void loop() {
  22. // do nothing
  23. }
  24. void onReceive(int packetSize)
  25. {
  26. // received a packet
  27. Serial.print("Received packet '");
  28. // read packet
  29. for (int i = 0; i < packetSize; i++)
  30. {
  31. Serial.print((char)LoRa.read());
  32. }
  33. // print RSSI of packet
  34. Serial.print("' with RSSI ");
  35. Serial.println(LoRa.packetRssi());
  36. }