arduino-LoRa
arduino-LoRa copied to clipboard
An Arduino library for sending and receiving data using LoRa radios.
Hi, I am sending the lora packets from adafruit feather 32u4( having sx1272 module) to Dragino module. Its working absolutely fine. But when I am sending the packets to Adafruit...
I‘m using an arduino nano D12-LEVEL SHIFTER-MISO D11-LEVER SHIFTER-MOSI D6-LEVER SHIFTER-NSS D5-LEVER SHIFTER-RST D4-LEVER SHIFTER-DIO0 D13-LEVER SHIFTER-SCK ``` #include #include void setup() { Serial.begin(115200); while (!Serial); Serial.println("LoRa Receiver"); LoRa.setSPIFrequency(1E6); if...
Hello, The API call LoRa.random() gave users really bad random numbers. They need some level of whitening in order to be useful, so I've added some rather dirty (sorry!) code...
- replaced hardcoded value with existed variable that contains same value;
It would be conveniant for debugging if the readRegister function would be public as it isn't useful to get the whole register dump if you only look for a specific...
I'm trying to compile LoRa library for MSP430 using Energia platform and I get the error SPISettings' does not name a type. This is because the SPISettings is nowhere in...
Hey everybody, I am using a MKR WAN 1310 microcontroller together with an mkr ethernet shield. The shield uses the following pins: 4 | SD CS | Reserved 5 |...
enableCrc() doesn't affect when used with receiver in explicit header mode (datasheet page 30). This modification adds crcOnPayload()-function, which can be used to detect if CRC is present in payload....
**this is a discussion not something that is going to happen now** Anyone who has glanced at the code will undoubtedly know it's littered with these sort of macros. Some...