From 467f525764c1f59a2887a76ec9f3d31cc240d7be Mon Sep 17 00:00:00 2001 From: ollo Date: Fri, 3 May 2019 21:09:36 +0200 Subject: [PATCH] increased update cycle to 10s --- main.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.lua b/main.lua index 0cdeb43..635d376 100644 --- a/main.lua +++ b/main.lua @@ -49,7 +49,6 @@ function displayTime() end local time = getTime(sec, timezoneoffset) local words = display_timestat(time.hour, time.minute) - print(package.path) dp = dofile("displayword.lc") if (dp ~= nil) then ledBuf = dp.generateLEDs(words, color, color1, color2, color3, color4) @@ -132,7 +131,7 @@ function normalOperation() end) displayTime() -- Start the time Thread - tmr.alarm(1, 20000, 1 ,function() + tmr.alarm(1, 10000, 1 ,function() displayTime() collectgarbage() end)