fixed setInterval

loader() to draw()
master
eleanor 2023-04-03 14:47:01 -05:00 committed by GitHub
parent 2f7b2e8e15
commit 47bd0a1aea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ Bangle.on('touch', (n, e) => {
clearText();
g.setColor(0,0,0);
g.setFont("Dylex7x13",2).setFontAlign(0,0).drawString(getEncour(), width/2, height/2);
setInterval(loader,3000);
setInterval(draw,3000);
}
});