Thanks! I've recently added the ability to include JS modules so I should get the module included for 1v96.
If you're interested in Telnet, this should work to enable it:
var server = require("net").createServer(function(c) { console.log('server connected'); c.write('Your welcome message!\r\n'); LoopbackA.setConsole(); LoopbackB.pipe(c); c.pipe(LoopbackB); }).listen(23);
Although as above, you can't have reset() in your code or it'll break the connection.
reset()
@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.
Thanks! I've recently added the ability to include JS modules so I should get the module included for 1v96.
If you're interested in Telnet, this should work to enable it:
Although as above, you can't have
reset()
in your code or it'll break the connection.