Minor changes

pull/2177/head
David Peer 2022-10-16 10:52:21 +02:00
parent 6859798b4a
commit b96d10e644
2 changed files with 6 additions and 3 deletions

View File

@ -69,6 +69,7 @@ function drawTime(){
var m = parseInt(date.getMinutes() * 360 / 60); var m = parseInt(date.getMinutes() * 360 / 60);
var h = date.getHours(); var h = date.getHours();
h = h > 12 ? h-12 : h; h = h > 12 ? h-12 : h;
h += date.getMinutes()/60.0;
h = parseInt(h*360/12); h = parseInt(h*360/12);
// Draw minute and hour bg // Draw minute and hour bg
@ -105,11 +106,13 @@ function drawDate(){
} }
function drawSteps(){ function drawDigits(){
var date = new Date();
g.setFontAlign(0,0); g.setFontAlign(0,0);
g.setFont("7x11Numeric7Seg",3); g.setFont("7x11Numeric7Seg",3);
var text = Bangle.getHealthStatus("day").steps; var text = ("0"+date.getHours()).substr(-2) + ":" + ("0"+date.getMinutes()).substr(-2); //Bangle.getHealthStatus("day").steps;
var w = g.stringWidth(text); var w = g.stringWidth(text);
g.setColor(g.theme.bg); g.setColor(g.theme.bg);
g.fillRect(cx-w/2-4, 120, cx+w/2+2, 140+20); g.fillRect(cx-w/2-4, 120, cx+w/2+2, 140+20);
@ -137,7 +140,7 @@ function draw(){
g.setColor(1,1,1); g.setColor(1,1,1);
drawBackground(); drawBackground();
drawDate(); drawDate();
drawSteps(); drawDigits();
drawTime(); drawTime();
drawCircle(Bangle.isLocked()); drawCircle(Bangle.isLocked());
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB