arduino-LoRa icon indicating copy to clipboard operation
arduino-LoRa copied to clipboard

An Arduino library for sending and receiving data using LoRa radios.

Results 163 arduino-LoRa issues
Sort by recently updated
recently updated
newest added

I have recently soldered my SX1276 modules to my custom board which has U.FL connector with U.FL to SMA cable connected to it and SMA has 5dB antenna connected to...

hi, this is my code, `#define BAND 868E6 @de //LORA lora_spi.begin(SCK, MISO, MOSI, SS); LoRa.setPins(SS, RST, DIO0); LoRa.setSPI(lora_spi); if (!LoRa.begin(BAND)) { Serial.println("Fallo Lora!"); } LoRa.setSpreadingFactor(7); LoRa.setSignalBandwidth(125E3); LoRa.enableCrc();` I use this...

I have come upon a snag I can't seem to solve. Recently I wanted to make a couple more copies of my Nano as a backup. (I have one backup...

Hello, thanks for a very useful library. I'm using a ESP32 (TTGO 2.1v1.6 LoRa) to receive packets at 10s intervals. At random intervals (1min to 10 hours), I get an...

Replaced the hardcoded part with the variable to destination

Hi sandeepmistry, are there any chances that you will implement CAD function for the LoRa receiving side so that it can support multiple spreading factors on a single channel?

Hi, carrying on from: https://github.com/sandeepmistry/arduino-LoRa/issues/290. I have managed to implement code that works but crashes within 24 hours. Did anybody find a fix for this issue? I am using lgvl...

Updated packetRSSI (RSSI=-139+16/15*PacketRssi) for cases when snr>0 [https://www.mouser.com/ds/2/761/sx1276-1278113.pdf, Section 5.5.5 Note-3]

Are you receiving `Starting LoRa failed` while using the demo code? PLEASE see the [FAQ #1](https://github.com/sandeepmistry/arduino-LoRa#faq) about using [setPins](https://github.com/sandeepmistry/arduino-LoRa/blob/master/API.md#set-pins) **BEFORE** submitting an issue. Initially, I have the same problem for...

Based on discussion in #279, this library currently does not support the use of a local `LoRa` object as a receiver. This prevents the use of multiple LoRa modules in...