arduino-LoRa
arduino-LoRa copied to clipboard
An Arduino library for sending and receiving data using LoRa radios.
Hello everyone I found an issue using this library. When you try to call `LoRaClass::beginPacket()` in your code and your LoRa device is disconnected, it freezes your device. When i...
I am using two LoRa sx1278 with arduino uno boards. the sender node is working perfectly but the receiver doesn't show any received messages. LoRa initialization is okay in both...
Dear LoRa Contributors, first, thanks for your wonderful work! I implemented your library myself and was very happy with it, except that you couldn't change the timeout for the Rx...
Hi, I am using SX1278 chip from AI-Thinker (433 MHz) with Arduino board to get the temperature and humidity data but I am getting "Starting LoRa failed". I made the...
I had some problem with LoRa giving no response when the bus is connected with another SPI device with hardware SCK pull-up. I suspected the culprit is the 1.8V long...
This modification adds the following functions. LoRa.onCadDone(callback) : Register the callback function for channel activity detection. LoRa.CAD(void) : Activate channel activity detection mode.
Added function LoRaClass::rxSignalDetected() returns true when LoRa carrier is detected. If you want to avoid collision, you should not transmit during this function returns true.
Switch the commentar of the last lines of setup and loop functions are not working on the HELTEC WiFi LoRa 32 V2 Link to Pin-Out: https://resource.heltec.cn/download/WiFi_LoRa_32/WIFI_LoRa_32_V2.pdf ```C // Libraries for...
This patch is motivated by a well known (#459, #460) limitation, that ESP microcontrollers can't use `float LoRa.packetSnr()` in ISR because that method performs a floating point operation. My proposed...
By using `std::function` rather than function pointers, users can invoke more complex callback functions such as non-static methods via the use of `std::bind`. This is a backwards compatible change as...