JaapBraam / LoRaWanGateway

A LoRaWan Gateway in LUA

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: How to run this gateway for US915 band

kragupat opened this issue · comments

Is all that is required is change the local CHN array defnintion to run in US 915Mhz

local CHN={}
CHN[0]=chan(902300000,"LoRa",MC1.BW125)
CHN[1]=chan(902500000,"LoRa",MC1.BW125)
CHN[2]=chan(902700000,"LoRa",MC1.BW125)
CHN[3]=chan(902900000,"LoRa",MC1.BW125)
CHN[4]=chan(903100000,"LoRa",MC1.BW125)
CHN[5]=chan(903300000,"LoRa",MC1.BW125)
CHN[6]=chan(903500000,"LoRa",MC1.BW125)
CHN[7]=chan(903700000,"LoRa",MC1.BW125)
CHN[8]=chan(903900000,"LoRa",MC1.BW250)
CHN[9]=chan(904100000,"FSK" ,MC1.BW150)

or do I have to do something more.

Yes! (and your lat/lon in init.lua 😁 )

Thanks