I just realized a really simple way to do conversions to arrays of bytes for saving...
function fToB(f){ var n=new Float32Array([f]); return new Uint8Array(n.buffer,0,4); }
And so on...
@DrAzzy 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.
I just realized a really simple way to do conversions to arrays of bytes for saving...
And so on...