Finding EUI for Seeeduino LoRaWAN OTAA

I am trying to understand how to register a Seeeduino LoRaWAN with the Things Network using the OTAA method. My understanding is that I need to provide a Device EUI when registering. They say I can obtain this from my device and to see the manufacturer’s documentation. I do not see any information on how to get the Device EUI. Can someone tell me how to do this? Thank you.

Hi there

i found it in <LINK_TEXT text=“https://github.com/SeeedDocument/LoRaWA … d-v2.1.pdf”>https://github.com/SeeedDocument/LoRaWAN_Gateway-868MHz_Kit_with_Raspberry_Pi_3/raw/master/res/[RHF-UM01649]IoT%20Discovery%20User%20Manual-seeed-v2.1.pdf</LINK_TEXT>

Thanks, I think.



I haven’t figured out how to send these AT commands to the Seeeduino board from my PC. It didn’t work just to type it into the serial monitor on my Arduino IDE. It seems like I have to send something to Serial, not SerialUSB…

Hi There

below code convey the meaning that we can use Serial to communicate with LoraWAN :smiley:
[code]
void setup()
{
Serial1.begin(9600);
SerialUSB.begin(115200);
}

void loop()
{
while(Serial1.available())
{
SerialUSB.write(Serial1.read());
}
while(SerialUSB.available())
{
Serial1.write(SerialUSB.read());
}
}
[/code]