-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44960c1
commit fc0d2d2
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// JoinEUI - previous versions of LoRaWAN called this AppEUI | ||
// for development purposes you can use all zeros - see wiki for details | ||
#define RADIOLIB_LORAWAN_JOIN_EUI 0x0000000000000000 | ||
|
||
// The Device EUI & two keys can be generated on the TTN console (or any other LoRaWAN Network Service Provider's console) | ||
#pragma message("Replace the dummy values for RADIOLIB_LORAWAN_DEV_EUI, RADIOLIB_LORAWAN_APP_KEY and RADIOLIB_LORAWAN_NWK_KEY by your own credentials.") | ||
#ifndef RADIOLIB_LORAWAN_DEV_EUI // Replace with your Device EUI | ||
#define RADIOLIB_LORAWAN_DEV_EUI 0x0000000000000000 | ||
#endif | ||
#ifndef RADIOLIB_LORAWAN_APP_KEY // Replace with your App Key | ||
#define RADIOLIB_LORAWAN_APP_KEY 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
#endif | ||
#ifndef RADIOLIB_LORAWAN_NWK_KEY // Put your Nwk Key here | ||
#define RADIOLIB_LORAWAN_NWK_KEY 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 | ||
#endif |