I don’t know if I’m in range of a gateway (how to tell)
Getting:
12:26:29.042 -> 25964897: EV_TXSTART
12:26:35.127 -> 26345236: EV_JOIN_TXCOMPLETE: no JoinAccept
with nothing seen on the gateway side (nearest is about 2.5KM, another 2.9KM) - I suspect I might not be heard in the urban environment.
// This EUI must be in little-endian format, so least-significant-byte
// first. When copying an EUI from ttnctl output, this means to reverse
// the bytes. For TTN issued EUIs the last bytes should be 0xD5, 0xB3,
// 0x70.
static const u1_t PROGMEM APPEUI[8] = { 0x82, 0x69, 0x03, 0xD0, 0x7E, 0xD5, 0xB3, 0x70 };
void os_getArtEui (u1_t* buf) { memcpy_P(buf, APPEUI, 8);}
// This should also be in little endian format, see above.
static const u1_t PROGMEM DEVEUI[8] = { 0xDD, 0x16, 0x11, 0xB8, 0x71, 0xA4, 0x2D, 0x00 };
void os_getDevEui (u1_t* buf) { memcpy_P(buf, DEVEUI, 8);}
// This key should be in big endian format (or, since it is not really a
// number but a block of memory, endianness does not really apply). In
// practice, a key taken from the TTN console can be copied as-is.
static const u1_t PROGMEM APPKEY[16] = { Deleted };
void os_getDevKey (u1_t* buf) { memcpy_P(buf, APPKEY, 16);}
from the gateway
Device EUI
The serial number of your radio module, similar to a MAC address
00 2D A4 71 B8 11 16 DD
8 bytes
Application EUI
70B3D57ED0036982