LoRaRF-Arduino
LoRaRF-Arduino copied to clipboard
Arduino library for basic transmitting and receiving data using LoRa and FSK modulation
LoRaRF-Arduino/tree/main/examples/Network I want to send data from the strip string. After the test, I find that only the number can be sent. How can I modify it to send the...
// for SX126x series or LLCC68 #include SX126x LoRa; #include //#include //Lolin S2 Mini SPI默认pin脚 #define MISO 40 #define MOSI 1 #define SCLK 4 #define nss 38 // LoRa模块片选引脚,可以根据您的连接进行修改 #define...
hi, i'm having this as output when testing sending data with e22-900m-30s module with wemos d1 mini: --------------- CUT HERE FOR EXCEPTION DECODER --------------- Soft WDT reset Exception (4): epc1=0x402010a0...
uint8_t deviceSel = 0x00; what does this mean? Could you please tell me which settings 0x00 sets? I already literally decomposed whole library, but can't find the needed parameter. Everyone...
Greetings, I'm currently facing a challenge with establishing communication between a Transmitter and Receiver Device. Specifically, I'm utilizing the Ebyte LoRa E220-400M22S alongside the MCU ATTINY804 IC. Below, I've provided...
Hello, I am using Ebyte LoRa Module: E220-400M22S (LLCC68) and MCU : ATTINY804 Connections are below: ``` ATTINY804 E220-400M22S SCK SCK MISO MISO MOSI MOSI SS (PIN0) NSS PIN1 BUSY...
I can use LLCC68 module to send data normally, but if I combine the receiving and sending code together, after the sending code is executed, the serial port will print...
Hello, I'm trying to change the transmission frequency in the loop() without success, is there anything I have to do additionally to make it work? like calling Lora.end or Lora.sleep?
The LLCC68 datasheet indicates different optimal PA settings than for the SX1268. Let me know if this change can be used, or a more complex logic is desired :) 
I've been testing your library on a SX1262 and I've seen that method 'setTxPower' fails for values lower than 14dBm. I'm new at programming but I think that, on file...