Candra kus
Candra kus
Yeah, you are correct. It must be no immediate return. Delete the else block will fix the issue. Feel free to fix this bug and open pull request. I will...
What do you mean by 915m30? Dou you mean 915030000 Hz frequency? In this case you must set the frequency with the following code ``` LoRa.setFrequency(915030000); ```
Yeah, it is a bug. It should be left shift instead right shift. Your suggestion is correct. Another solution to write correct code in one line is like the follow...
So the problem is LoRa package transmitted by raspberry pi does not received by other devices while raspberry pi can received from other devices? In this case you should check...
Dear @VovaN60, I have successfully used this library using SX1262 lora module with 433 Mhz frequency. The test include transmitter on raspberry pi and receiver on Arduino. Are all the...
Is the corrupt message only happen once and then correct message received? Or the corrupt message always happen? Do you use Explicit or Implicit package type?
Yes, this library works on E22-900M30S. +22 dBm output power doesn't damage the LoRa chip. To get +22 dBm you must add code like following ```cpp LoRa.setTxPower(22) ``` It will...
If you sure you have enabled SPI, `FileNotFound` error happen because the problem in Linux kernel, or you used wrong SPI bus you already enabled. Please note that if SPI...
This error happen because the SPI port is not enabled yet for selected SPI bus. If you used SPI port 1, add this line in /boot/config.tx 1. dtoverlay=spi1-3cs On Sat,...
No, this library does not support LoRa module with UART interface like ebyte you have. I have tested some ebyte modules with SPI interface and they work fine. Any LoRa...