• The output wouldn't be readable as it's just a string of binary data - ideally you'd shove it straight into some LEDs so you could see it...

    You should be able to output the actual values doing something like this though:

    console.log(data.split("").map(function(­n) { return n.charCodeAt(0); }).join(" "))
    
About

Avatar for Gordon @Gordon started