You should replace
console.log("> data : " , data);
with
for (index in data) { console.log("> data:" + data.charCodeAt(index)); }
to see numbers instead of text.
@maze1980 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.
You should replace
with
to see numbers instead of text.