From dbf57058d0fe156ea9a721b4584f41999f7c4e6b Mon Sep 17 00:00:00 2001 From: v1nc Date: Thu, 7 May 2020 19:38:34 +0200 Subject: [PATCH] change colors and interval time --- apps/getup/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/getup/app.js b/apps/getup/app.js index 5689049c7..cddd93a65 100644 --- a/apps/getup/app.js +++ b/apps/getup/app.js @@ -7,16 +7,16 @@ function remind() { } function print_message(){ - g.setColor(0xF800); + g.clear(); + g.setColor(0x03E0); g.drawString("sitting is dangerous!", g.getWidth()/2, g.getHeight()/2); } //init graphics -g.clear(); require("Font8x12").add(Graphics); g.setFont("8x12",2); g.setFontAlign(0,0); g.flip(); print_message(); -setInterval(remind,60000); +setInterval(remind,1200000);