The reason I ask is I'm managing ~50 Bangles and I'd like to do this with Node instead of running the app loader on all of them. This is on Bangle.js2 if it makes a difference.
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.
Am I safe removing e.g. the health app programmatically?
code snippet:
var files = require("Storage").list();
files.forEach(function(element){
if(element.startsWith("health") ) require("Storage").erase(element);
});
The reason I ask is I'm managing ~50 Bangles and I'd like to do this with Node instead of running the app loader on all of them. This is on Bangle.js2 if it makes a difference.
Thanks in advance!
Dan Fox