ESP8266 Node-mcu with RFM95W code

Hello out there.
i have a ESP8266 Node-mcu wired to at RFM95W.

i can get this to work with the arduino IDE

ive got the esp8266 to work with pycharm - micropython but cant find any code for the RF95W
so my question is if its even possible to get this to work with python/micropython on this setup??

It’s probably possible, but likely not advisable. Realistically it makes sense to implement the LoRaWAN stack in C and use that as library to support the micropython.

Someone at Adafruit charged into implementing LoRaWAN in their compact python flavor but I don’t think they ever completed it

1 Like

PyComm added LoRa and LoRaWAN support to their Python implementation (for the ESP32), may be this can be used as base for an ESP8266 implementation.

1 Like

PyComm added LoRa and LoRaWAN support to their Python implementation

Indeed, that’s an example of what I mean - they have code from Semtech LoRaMac-Node incorporated as a C library supporting the micropython.

1 Like