JaapBraam / LoRaWanGateway

A LoRaWan Gateway in LUA
MIT License
225 stars 74 forks source link

Question: How to run this gateway for US915 band #10

Closed kragupat closed 7 years ago

kragupat commented 7 years ago

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.

JaapBraam commented 7 years ago

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

kragupat commented 7 years ago

Thanks