arduino-LoRa
arduino-LoRa copied to clipboard
Support for Microchip WLR089U0
Hello,
Please add support to WLR089U0 Microchip module, the SAMR34 is SAML21 with a SX1276 IC.
I do the job: Just and to the lib file Lora.cpp line:125. I change:
if (version != 0x12){
return 0;
}
to
if (version != 0x12){
if (version != 0x13)
return 0;
}
It will work fine. Thank You