It does look a lot like the echo(0); didn't get through the first time. Perhaps you could somehow dump the code you're sending to Espruino (eg connect 2x USB-TTL modules together, and then listen on one while using the other with Espruino?).
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.
It does look a lot like the
echo(0);
didn't get through the first time. Perhaps you could somehow dump the code you're sending to Espruino (eg connect 2x USB-TTL modules together, and then listen on one while using the other with Espruino?).It should be something like:
There could also be garbage in Espruino's input line when you connect, so you can try sending Ctrl-C (char code 0x03) before the
echo(0)
just in case?