Hey, thanks! I'll merge it in.
I'm not sure what to suggest about the module - I think it's going to need a google I'm afraid.
Also, for the last line of:
Serial2.setup(115200, { rx: A3, tx : A2 }); Serial2.on('data', function(d) { USB.write(d); }); USB.on('data', function(d) { Serial2.write(d); });
to work, you need to move the Espruino interactive console off of USB with LoopbackA.setConsole() (or maybe Serial1?)
LoopbackA.setConsole()
@Gordon started
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.
Hey, thanks! I'll merge it in.
I'm not sure what to suggest about the module - I think it's going to need a google I'm afraid.
Also, for the last line of:
to work, you need to move the Espruino interactive console off of USB with
LoopbackA.setConsole()
(or maybe Serial1?)