MKRWAN icon indicating copy to clipboard operation
MKRWAN copied to clipboard

An Arduino library for sending and receiving data using LoRaWAN protocol and LoRa® radios.

Results 53 MKRWAN issues
Sort by recently updated
recently updated
newest added

Reading the code, I see that various join methods, and the `connected` method are declared virtual. Why is this? Are subclasses expected that only subclass these methods? Or is this...

type: imperfection
topic: code

**2 LoRaWan examples to connect to the Helium network in North America US915** @sebromero These examples can help people get started with using the [Helium LoRaWan "Peoples"](https://www.helium.com/) network in North...

type: enhancement
topic: documentation

The [LoraSendAndReceive](https://github.com/arduino-libraries/MKRWAN/blob/master/examples/LoraSendAndReceive/LoraSendAndReceive.ino#L40) example sketch uses the `minPollInterval()` function but I can't seem to find any documentation for this function. ```c modem.minPollInterval(60); // NOTE: independently by this setting the modem will...

type: imperfection
topic: documentation

I was testing LoraSendAndReceive sketch with MKR 1300 WAN as node and a PyCom LoPy as "nano gateway" with The Things Network. Pycom "nanogateway" / TTN can occur in "join...

Hi, Which SF does the library support ? Is it possible to modify it ? Thanks for your help.

Changed library version to match firmware v1.2.3, updated firmware with fixes to 1.2.3 from pull request [35](https://github.com/arduino/mkrwan1300-fw/pull/35) I've fixed a problem where the getJoinStatus function waited forever for a response...

Hello guys, On the MKR WAN 1310 [product page](https://store.arduino.cc/usa/mkr-wan-1310), it says > When properly configured, the power consumption is now as low as 104uA! However I am not able to...

status: waiting for information

MKRWAN.h has been updated to be compliant with version 1.3.1 of ST fw. Some functions have been renamed, while others have been deleted because not supported anymore. Lora error and...

The `LoraSendAndReceive` uses `available()` to check if there is a response after send a packet, is there any reason `parsePacket()` is not used in the example?

Using this command in my sketch on MKR1310: Firmware: 1.2.1 ``` connected = modem.joinABP(devAddr, nwkSKey, appSKey); if (!connected) { if(debug)Serial.println("Lora ABP Connection failed !"); while (1) {} } else {...

type: imperfection