Hello, I would like to know if there is a way to plot the result of this waveform:
var w = new Waveform(10, {bits:16});
w.on("finish", function(buf) {
for (var i in buf)
console.log(buf[i]);
});
w.startInput(A0,1000,{repeat:false});
directly to Excel or other program in order to plot a graph, without having to copy/paste the results, as it would be inconvenient to copy 1000 points of the waveform, for example.
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.
Hello, I would like to know if there is a way to plot the result of this waveform:
var w = new Waveform(10, {bits:16});
w.on("finish", function(buf) {
for (var i in buf)
console.log(buf[i]);
});
w.startInput(A0,1000,{repeat:false});
directly to Excel or other program in order to plot a graph, without having to copy/paste the results, as it would be inconvenient to copy 1000 points of the waveform, for example.
Att, Thiago