You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • 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!

About

Avatar for Gordon @Gordon started