CREATE NEW THING How Set up a Arduino MKR WAN 1300 (LoRa connectivity) ?

https://www.arduino.cc/en/Create/FAQ#toc11

Arduino MKR WAN 1300 is not suported, how can I enable the device in the cloud with my ARDUINO PRO LoRa GATEWAY ?

Roberto

You can go here:

and then setup the Arduino Pro Gateway. Then from the same menu you can setup a MKR WAN 1300.

Thank you, I thought about it.

I have to understand how to find devEUI to register the device ...

Hi Sire62, to retrieve the devEUI from your board you can upload the following sketch:

#include <MKRWAN.h>
  
LoRaModem modem;
  
void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  while (!Serial);
  // change this to your regional band (eg. US915, AS923, ...)
  if (!modem.begin(EU868)) {
    Serial.println("Failed to start module");
    while (1) {}
  };
}
void loop() {
  Serial.println(modem.deviceEUI());
  delay(2000);
}

By the way, we are currently working on MKR WAN specific getting started.