From e730eceaf50e157575551f24b3456a0b92f563e0 Mon Sep 17 00:00:00 2001 From: noobejby Date: Wed, 6 Nov 2024 13:26:40 +0100 Subject: [PATCH] cleanup and updated readme --- apps/bttfclock/BackToTheFuture.app.js | 4 +-- apps/bttfclock/README.md | 35 +++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/apps/bttfclock/BackToTheFuture.app.js b/apps/bttfclock/BackToTheFuture.app.js index d250931be..6132adde5 100644 --- a/apps/bttfclock/BackToTheFuture.app.js +++ b/apps/bttfclock/BackToTheFuture.app.js @@ -1,7 +1,6 @@ require("Font8x16").add(Graphics); require("Font7x11Numeric7Seg").add(Graphics); require("Font5x7Numeric7Seg").add(Graphics); -require("Font5x9Numeric7Seg").add(Graphics); require("Font4x5").add(Graphics); @@ -140,7 +139,6 @@ function draw(){ g.setBgColor(1,0,0); g.setColor(1,1,1); //Draw text - //g.drawRect(x1, y1, x2, y2); g.setFont("8x16"); g.drawString('HOUR', 51, timeTextY+1); g.drawString('MIN', 96, timeTextY+1); @@ -217,7 +215,7 @@ function draw(){ g.setTheme({bg:"#000",fg:"#fff",dark:true}).clear(); //draw(); -//the following section is also from waveclk +//the following section is from waveclk Bangle.on('lcdPower',on=>{ if (on) { draw(); // draw immediately, queue redraw diff --git a/apps/bttfclock/README.md b/apps/bttfclock/README.md index e69de29bb..ee9b03c3d 100644 --- a/apps/bttfclock/README.md +++ b/apps/bttfclock/README.md @@ -0,0 +1,35 @@ +# Back to the future Clock + + + +A watchface inspierd by this garmin watchface.
+ +## Todo + +- Improving quality of Fonts. +- More status icons. +- A way to change step golas. +- Improving bangle app performances (using functions for images and specialized array). + +## Functionalities + +- Current time +- Current day and month +- Steps +- Battery +- Step goal + +## Screenshots +Clock:
+ + +## Usage + + +## Links +### code ispired by +advCasioBangleClock https://github.com/dotgreg/advCasioBangleClock +93dub https://github.com/espruino/BangleApps/tree/master/apps/93dub + +### Creator +https://github.com/NoobEjby \ No newline at end of file