mirror of
https://github.com/manuelbl/ttn-esp32.git
synced 2025-07-14 15:02:52 +02:00
Allow all zeroes for AppEUI/JoinEUI
This commit is contained in:
@ -17,15 +17,21 @@
|
||||
|
||||
#include "TheThingsNetwork.h"
|
||||
|
||||
|
||||
// NOTE:
|
||||
// The LoRaWAN frequency and the radio chip must be configured by running 'make menuconfig'.
|
||||
// The LoRaWAN frequency and the radio chip must be configured by running 'idf.py menuconfig'.
|
||||
// Go to Components / The Things Network, select the appropriate values and save.
|
||||
|
||||
// Copy the below two lines from the bottom
|
||||
// of your device's overview page in the TTN console.
|
||||
// Copy the below hex strings from the TTN console (Applications > Your application > End devices
|
||||
// > Your device > Activation information)
|
||||
|
||||
// AppEUI (sometimes called JoinEUI)
|
||||
const char *appEui = "????????????????";
|
||||
|
||||
// AppKey
|
||||
const char *appKey = "????????????????????????????????";
|
||||
|
||||
|
||||
// Pins and other resources
|
||||
#define TTN_SPI_HOST HSPI_HOST
|
||||
#define TTN_SPI_DMA_CHAN 1
|
||||
|
Reference in New Issue
Block a user