I am working with the Board called LILYGO TBEAM V1.1 and i am trying to find my devEUI and tryed everything to find it but could not find. It has not “Serial1” port so I cannot work with “Device Info” example. Can you guys help me to find it?
#include <TheThingsNetwork.h>
#define loraSerial Serial1
#define debugSerial Serial
// Replace REPLACE_ME with TTN_FP_EU868 or TTN_FP_US915
#define freqPlan TTN_FP_EU868
TheThingsNetwork ttn(loraSerial, debugSerial, freqPlan);
void setup()
{
loraSerial.begin(57600);
debugSerial.begin(9600);
}
void loop()
{
debugSerial.println(“Device Information”);
debugSerial.println();
ttn.showStatus();
debugSerial.println();
debugSerial.println(“Use the EUI to register the device for OTAA”);
debugSerial.println("-------------------------------------------");
debugSerial.println();
delay(10000);
}