Add example ttn test config file

This commit is contained in:
Starbeamrainbowlabs 2019-06-21 17:11:44 +01:00
parent bfbcde4619
commit 9c65f1e588
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// Copy this file to have the name "config.custom.h", and fill in the 3 sections below
// LoRaWAN NwkSKey, network session key
// Big endian (i.e. msb)
static const PROGMEM u1_t NWKSKEY[16] = { .... };
// LoRaWAN AppSKey, application session key
// Big endian (i.e. msb)
static const u1_t PROGMEM APPSKEY[16] = { .... };
// LoRaWAN end-device address (DevAddr)
// See http://thethingsnetwork.org/wiki/AddressSpace
// The library converts the address to network byte order as needed.
// Big endian (i.e. msb)
static const u4_t DEVADDR = 0x....; // <-- Change this address for every node!