Just thought I'd also mention that you can now create a telnet server that allows remote access to Espruino's console, letting you write (and debug) code over the net!
var server = 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);
This still needs work (coping with disconnects, multiple connections, and some attempt at a password), but it shows what can be done!
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.
Just thought I'd also mention that you can now create a telnet server that allows remote access to Espruino's console, letting you write (and debug) code over the net!
This still needs work (coping with disconnects, multiple connections, and some attempt at a password), but it shows what can be done!