But yeah, the whole atob('...') gets stored as-is, as text. So if you want it stored as binary you need to do Storage.write(... , atob('...'))...
atob('...')
Storage.write(... , atob('...'))
@Gordon 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.
But yeah, the whole
atob('...')
gets stored as-is, as text. So if you want it stored as binary you need to doStorage.write(... , atob('...'))
...