Hi,
I’m having problems activating my Device with TTN.org
I’ve installed the MCCI LoRa LMIC library as suggested in this (official) TTN tutorial:
https://www.thethingsnetwork.org/community/birmingham-al/post/heltec-esp32-lorawan-tutorial-published
I’ve followed all steps, found about the different pin assignment in V2 and changed them accordingly in my code:
const lmic_pinmap lmic_pins = {
.nss = 18, // chip select on feather (rf95module) CS
.rxtx = LMIC_UNUSED_PIN,
.rst = 14, // reset pin
.dio = {26, 35, 34}, // assumes external jumpers [feather_lora_jumper]
// DIO1 is on JP1-1: is io1 - we connect to GPO6
// DIO1 is on JP5-3: is D2 - we connect to GPO5
};
I’ve set up my Device in my TTN account, added a device and set it to ABP but no chance . i can’t send out anything / TTN won’t receive anything.
Btw. I’ve tested the Heltec Library samples, they all work fine but unfortunately (afaik) no TTN examples here …
Any idea what could be wrong?