BangleApps/apps/bootgattbat/boot.js

9 lines
175 B
JavaScript
Raw Permalink Normal View History

(() => {
function advertiseBattery() {
2024-05-24 16:18:35 +00:00
require("ble_advert").set(0x180F, [E.getBattery()]);
}
setInterval(advertiseBattery, 60 * 1000);
advertiseBattery();
2020-08-17 19:53:11 +00:00
})();