Skip to content

Commit e730ece

Browse files
committed
cleanup and updated readme
1 parent ec51398 commit e730ece

File tree

2 files changed

+36
-3
lines changed

2 files changed

+36
-3
lines changed

apps/bttfclock/BackToTheFuture.app.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
require("Font8x16").add(Graphics);
22
require("Font7x11Numeric7Seg").add(Graphics);
33
require("Font5x7Numeric7Seg").add(Graphics);
4-
require("Font5x9Numeric7Seg").add(Graphics);
54
require("Font4x5").add(Graphics);
65

76

@@ -140,7 +139,6 @@ function draw(){
140139
g.setBgColor(1,0,0);
141140
g.setColor(1,1,1);
142141
//Draw text
143-
//g.drawRect(x1, y1, x2, y2);
144142
g.setFont("8x16");
145143
g.drawString('HOUR', 51, timeTextY+1);
146144
g.drawString('MIN', 96, timeTextY+1);
@@ -217,7 +215,7 @@ function draw(){
217215
g.setTheme({bg:"#000",fg:"#fff",dark:true}).clear();
218216
//draw();
219217

220-
//the following section is also from waveclk
218+
//the following section is from waveclk
221219
Bangle.on('lcdPower',on=>{
222220
if (on) {
223221
draw(); // draw immediately, queue redraw

apps/bttfclock/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Back to the future Clock
2+
3+
<img src="https://user-images.githubusercontent.com/2981891/175355586-1dfc0d66-6555-4385-b124-1605fdb71a11.jpg" width="250" />
4+
5+
A watchface inspierd by <a target="_blank" href="https://apps.garmin.com/apps/d181bcf9-5421-42a5-b460-863e5e76d798">this garmin watchface</a>.<br/>
6+
7+
## Todo
8+
9+
- Improving quality of Fonts.
10+
- More status icons.
11+
- A way to change step golas.
12+
- Improving bangle app performances (using functions for images and specialized array).
13+
14+
## Functionalities
15+
16+
- Current time
17+
- Current day and month
18+
- Steps
19+
- Battery
20+
- Step goal
21+
22+
## Screenshots
23+
Clock:<br/>
24+
25+
26+
## Usage
27+
28+
29+
## Links
30+
### code ispired by
31+
advCasioBangleClock <a target="_blank" href="https://github.com/dotgreg/advCasioBangleClock">https://github.com/dotgreg/advCasioBangleClock</a>
32+
93dub <a target="_blank" href="https://github.com/espruino/BangleApps/tree/master/apps/93dub">https://github.com/espruino/BangleApps/tree/master/apps/93dub</a>
33+
34+
### Creator
35+
<a target="_blank" href="https://github.com/NoobEjby">https://github.com/NoobEjby</a>

0 commit comments

Comments
 (0)