Skip to content

Commit ba6d265

Browse files
committed
Remade the ttime update to once a minute
1 parent 3022a9a commit ba6d265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/jsonclock/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ let redrawValues = function() {
250250
drawTimeout = setTimeout(function() {
251251
drawTimeout = undefined;
252252
redrawValues();
253-
}, 600 - (Date.now() % 600));
253+
}, 60000 - (Date.now() % 60000));
254254
};
255255

256256
Bangle.on('touch', (zone, e) => {

0 commit comments

Comments
 (0)