Skip to content

Commit

Permalink
removed unused values
Browse files Browse the repository at this point in the history
  • Loading branch information
NoobEjby committed Nov 8, 2024
1 parent 57f1557 commit 44ef058
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/bttfclock/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ require("Font7x11Numeric7Seg").add(Graphics);
require("Font5x7Numeric7Seg").add(Graphics);
require("Font4x5").add(Graphics);


const width = g.getWidth();
const height = g.getHeight();
const timeTextY = 4;
const timeDataY = timeTextY+19;
const DateTextY = 48;
Expand Down Expand Up @@ -120,7 +117,7 @@ function draw(){
drawGoal();
var date = new Date();
var h = date.getHours(), m = date.getMinutes(), s = date.getSeconds();
var d = date.getDate(), w = date.getDay(), y = date.getFullYear();
var d = date.getDate(), y = date.getFullYear();//, w = date.getDay();

if (h<10) {
h = ("0"+h).substr(-2);
Expand Down

0 comments on commit 44ef058

Please sign in to comment.