BangleApps/apps/drained/boot.js

14 lines
702 B
JavaScript
Raw Normal View History

{
2023-05-07 09:44:04 +00:00
var _a = require("Storage").readJSON("drained.setting.json", true) || {}, _b = _a.battery, threshold_1 = _b === void 0 ? 5 : _b, _c = _a.interval, interval = _c === void 0 ? 10 : _c, _d = _a.keepStartup, keepStartup_1 = _d === void 0 ? true : _d;
drainedInterval = setInterval(function () {
if (Bangle.isCharging())
return;
if (E.getBattery() > threshold_1)
return;
2023-04-19 17:14:41 +00:00
var app = "drained.app.js";
2023-05-07 09:44:04 +00:00
if (!keepStartup_1)
2023-04-19 17:14:41 +00:00
require("Storage").write(".boot0", "if(typeof __FILE__ === \"undefined\" || __FILE__ !== \"".concat(app, "\") setTimeout(load, 100, \"").concat(app, "\");"));
load(app);
}, interval * 60 * 1000);
}