2019-11-06 17:25:02 +00:00
|
|
|
(function(){
|
|
|
|
|
2020-05-23 21:32:33 +00:00
|
|
|
function setWidth() {
|
|
|
|
WIDGETS["bat"].width = 40 + (Bangle.isCharging()?16:0);
|
2019-11-06 17:25:02 +00:00
|
|
|
}
|
2020-05-23 21:32:33 +00:00
|
|
|
function draw() {
|
|
|
|
var s = 39;
|
|
|
|
var x = this.x, y = this.y;
|
2021-05-26 15:21:52 +00:00
|
|
|
g.reset();
|
2020-05-23 21:32:33 +00:00
|
|
|
if (Bangle.isCharging()) {
|
2021-06-22 08:36:57 +00:00
|
|
|
g.setColor("#0f0").drawImage(atob("DhgBHOBzgc4HOP////////////////////3/4HgB4AeAHgB4AeAHgB4AeAHg"),x,y);
|
2020-05-23 21:32:33 +00:00
|
|
|
x+=16;
|
|
|
|
}
|
2021-05-26 15:21:52 +00:00
|
|
|
g.setColor(g.theme.fg);
|
2020-05-23 21:32:33 +00:00
|
|
|
g.fillRect(x,y+2,x+s-4,y+21);
|
|
|
|
g.clearRect(x+2,y+4,x+s-6,y+19);
|
|
|
|
g.fillRect(x+s-3,y+10,x+s,y+14);
|
2021-06-22 08:36:57 +00:00
|
|
|
g.setColor("#0f0").fillRect(x+4,y+6,x+4+E.getBattery()*(s-12)/100,y+17);
|
2020-05-23 21:32:33 +00:00
|
|
|
}
|
|
|
|
Bangle.on('charging',function(charging) {
|
|
|
|
if(charging) Bangle.buzz();
|
|
|
|
setWidth();
|
|
|
|
Bangle.drawWidgets(); // relayout widgets
|
|
|
|
g.flip();
|
|
|
|
});
|
2021-08-25 07:45:09 +00:00
|
|
|
var batteryInterval = Bangle.isLCDOn() ? setInterval(()=>WIDGETS["bat"].draw(), 60000) : undefined;
|
2020-05-23 21:32:33 +00:00
|
|
|
Bangle.on('lcdPower', function(on) {
|
|
|
|
if (on) {
|
|
|
|
WIDGETS["bat"].draw();
|
|
|
|
// refresh once a minute if LCD on
|
|
|
|
if (!batteryInterval)
|
|
|
|
batteryInterval = setInterval(()=>WIDGETS["bat"].draw(), 60000);
|
|
|
|
} else {
|
|
|
|
if (batteryInterval) {
|
|
|
|
clearInterval(batteryInterval);
|
|
|
|
batteryInterval = undefined;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
WIDGETS["bat"]={area:"tr",width:40,draw:draw};
|
2020-03-05 13:15:27 +00:00
|
|
|
setWidth();
|
2019-11-06 17:25:02 +00:00
|
|
|
})()
|