Yes, char code 16 right on the start of a line disables echo for just that line.
Is it possible that you somehow ended up sending the characters \x10 and not the single character code 16? You could try String.fromCharCode(16)+ but I'd have thought the code I posted should work.
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.
Yes, char code 16 right on the start of a line disables echo for just that line.
Is it possible that you somehow ended up sending the characters
\x10
and not the single character code 16? You could tryString.fromCharCode(16)+
but I'd have thought the code I posted should work.