Hello everyone!
I’m trying to connect my Lora 32 (v3) to the helium network but I haven’t been able to success on it. Could someone guide me a bit here please?
I’m using Heltec-Aaron-Lee/WiFi_Kit_series and using this example
I created a device on the helium console and used my devEui, appEui and appKey.
Also I configured my license which I got from https://resource.heltec.cn/search
Im using US915 as the region and have tried all this different masks:
uint16_t userChannelsMask[6]={ 0xFF00,0x0000,0x0000,0x0000,0x0000,0x0000 };
//uint16_t userChannelsMask[6]={ 0xFF00, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000};
//uint16_t userChannelsMask[6]={ 0xFF00, 0x0000, 0x0000, 0x0000, 0x0002, 0x0000};
//uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0002,0x0000 };
//uint16_t userChannelsMask[6]={ 0x0000,0x0000,0x0000,0x0000,0xFFFF,0xFFFF };
//uint16_t userChannelsMask[6]={ 0x0000,0x0000,0x0000,0xFF00,0x0000,0x0000 };
//uint16_t userChannelsMask[6]={ 0x001F,0x0000,0x0000,0x0000,0x0000,0x0000 };
//uint16_t userChannelsMask[6]={ 0x00FF,0x0000,0x0000,0x0000,0x0002,0x0000 };
I’m using:
DeviceClass_t loraWanClass = CLASS_C; (Is this correct?)
On the serial monitor I can see “Joining” but it fails to join. Any ideas of what im doing wrong? should this work?