Hello
I have Lopy4 + pysense and I try to use exaple from here https://github.com/brocaar/pycom-examples
I use Mikroik Lora Gateway (EU868), and ChirpStack on my serever
So, Server is working, Gateway is online, I defined profiles, all, device but from sme reson devise newer in online
So I set Device-profile LoraWAN MAC verison 1.1.0
Set aplication
Add devices (use devEUI from LoPy4) BUT on KEY OTAA tab thera are Aplication key and Network Key
Wish one I use ? I try combination but newer work
On python cone on LoPy4 i have this:
lora = LoRa(mode=LoRa.LORAWAN)
create an OTAA authentication parameters
app_eui = binascii.unhexlify(‘0000000000000000’)
app_key = binascii.unhexlify(‘cf05aea9675f558d59059ea0603ab034’)
print(“DevEUI: %s” % (binascii.hexlify(lora.mac())))
print(“AppEUI: %s” % (binascii.hexlify(app_eui)))
print(“AppKey: %s” % (binascii.hexlify(app_key)))
Any help.