I'm trying to setup an serial connexion to the RN2483A to achieve an LoraWan test with TTN, like this exemple on Espruino site with no result. I've connect TX/RX from @DrAzzy plate to RN2384A TX/RX, power and try :
var RN2483 = require("RN2483");
Serial2.setup(9600, { tx:D17, rx:D16 });
var lora = new RN2483(Serial2);
lora.getStatus(function(x){console.log(x);});
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Hi all
I'm trying to setup an serial connexion to the RN2483A to achieve an LoraWan test with TTN, like this exemple on Espruino site with no result. I've connect TX/RX from @DrAzzy plate to RN2384A TX/RX, power and try :
and get this result:
So I'm trying first to get some console.log from the Serial2 on this ESP32 MCU board .
I wired GPIO16 and GPIO17 and try this :
Well... with no result too :(
Does someone succeed in this project?