LoRaRF-Python
LoRaRF-Python copied to clipboard
The library doesn't work with multipple modules.
Hello Dear,
The lib doesn't support multipple SPI LoRa modules.
When i create a multipple SX126x() objects all seams to work. But in reality it works with only 1 module.
Here what i modified in the library and now it is all works:
Removed this:
spi = spidev.SpiDev()
Added this:
self._spi = spidev.SpiDev()
to def setSpi function of the object.
Please confirm it is right. And may be add to the lib. So people can use multiple modules.