Hello Community,
I’m trying to setup a single-channel-gateway and a node which is using OTAA, but no matter what I configure… the node is still stucking at EV_JOINING. I will report what I’ve done so far. Maybe you could see any mistake or help me, what I’m doing wrong…
I’m using the following Hardware:
- 2 x Heltec LoRa V2 with SX1276 (https://www.amazon.de/Dual-Core-Bluetooth-868-915MHz-Development-Arduino/dp/B078M74NNN)
One board is the Gateway with the following Code:
The other board is the Node using OTAA with the following Code:
I’ve correctly changed the Keys in the Node-Code:
static const u1_t PROGMEM APPEUI[8] = { 0x2E, 0x94, 0x01, 0x**, 0x**, 0xD5, 0xB3, 0x70 };
static const u1_t PROGMEM DEVEUI[8] = { 0x80, 0xFB, 0x98, 0x**, 0x**, 0xE3, 0x50, 0xCC };
static const u1_t PROGMEM APPKEY[16] = { 0x42, 0x75, 0xE7, 0x**, 0x**, 0x**, 0xC5, 0x59, 0x65, 0xAB, 0x6A, 0x55, 0x7A, 0x08, 0xC8, 0x4D };
Then I start running the Gateway and in the TTN Console of the Gateway I see it is online. That seems to be working so far.
After that I start running the Node and in the TTN Console of the Gateway (-> Traffic), I see the Gateway is receiving a Join Request and sending back a Join Accept like in the picture:
And in my Application Data of the device I see the Activation like in the following picture:
But I can not see the “Hello, world!” !!!
The Console of the node shows following:
Could you guys please tell me what I’m doing wrong? Is the node not receiving any Join Accept from the gateway? Or is the gateway not sending any Join Accept to the node?
Why can’t I see the “Hello world” message in the Application Data?
If you need any more information please let me know. I just wanted to keep the post as short as far.