Add example ttn test config file
This commit is contained in:
parent
bfbcde4619
commit
9c65f1e588
1 changed files with 15 additions and 0 deletions
15
iot/TTNTest/config.custom.h.example
Normal file
15
iot/TTNTest/config.custom.h.example
Normal 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!
|
Loading…
Reference in a new issue