Doubt on Gateway
-
Hi there, i have a doubt here. Is it the same for both of this
- lora = LoRa(mode=LoRa.LORA, rx_iq=True, region=LoRa.US915)
- lora = LoRa(mode=LoRa.LORA, frequency = 915000000)
As the problem i face is, i using #1 it have no response while using #2 it execute and give response.
-
You should specify both the region and frequency when using raw LoRa
lora = LoRa(mode=LoRa.LORA, rx_iq=True, frequency = 915000000, region=LoRa.US915)
The region parameter is optional an can usually be determined from the choice you made using the firmware upgrade tool, but it doesn't hurt to specify it.