attempt to draw what we want to see

pull/1003/head
Sebastian Di Luzio 2021-12-04 20:34:45 +01:00
parent c320902fc6
commit c2b731a972
2 changed files with 2 additions and 14 deletions

View File

@ -4680,7 +4680,7 @@
"name": "Charging Status",
"shortName":"ChargingStatus",
"icon": "widget.png",
"version":"0.1.4",
"version":"0.1.5",
"type": "widget",
"description": "A simple widget that shows up whenever the watch starts charging.",
"tags": "widget,battery",

View File

@ -11,8 +11,7 @@
g.reset();
g.setColor("#FD0"); // on = amber
//if (Bangle.isCharging()) {
g.drawImage(atob("GBiBAAAAAAAAAAAAAA//8B//+BgYGBgYGBgYGBgYGBgYGBgYGB//+B//+BgYGBgYGBgYGBgYGBgYGBgYGB//+A//8AAAAAAAAAAAAA=="), this.x, 2 + this.y);
//g.setColor('#0f0').drawImage(atob("EBCBAf9//3/+f/x//P/4//gH8A/wD+Af/x//P/4//n/+//7/"), this.x, this.y);
g.setColor('#0f0').drawImage(atob("EBCBAf9//3/+f/x//P/4//gH8A/wD+Af/x//P/4//n/+//7/"), this.x, this.y);
//}
}
@ -22,17 +21,6 @@
draw: draw,
};
function gpsDraw() {
g.reset();
g.setColor("#FD0"); // on = amber
g.drawImage(atob("GBiBAAAAAAAAAAAAAA//8B//+BgYGBgYGBgYGBgYGBgYGBgYGB//+B//+BgYGBgYGBgYGBgYGBgYGBgYGB//+A//8AAAAAAAAAAAAA=="), this.x, 2 + this.y);
}
WIDGETS.gpsT = {
area: "tr",
width: 24,
draw: gpsDraw
};
})();