BangleApps/apps/drained/boot.js

14 lines
570 B
JavaScript
Raw Normal View History

2023-03-10 23:20:28 +00:00
"use strict";
{
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.disableBoot, disableBoot_1 = _d === void 0 ? false : _d;
drainedInterval = setInterval(function () {
if (Bangle.isCharging())
return;
if (E.getBattery() > threshold_1)
return;
if (disableBoot_1)
require("Storage").erase(".boot0");
load("drained.app.js");
}, interval * 60 * 1000);
}