#401 slowed polling rate for computer app

This commit is contained in:
Mikayla Fischler 2025-08-19 18:42:48 -04:00
parent 3b856655c3
commit 691b781c52

View File

@ -76,9 +76,9 @@ local function new_view(root)
end end
local last_update = 0 local last_update = 0
-- refresh data callback, every 500ms it will re-send the query -- refresh data callback, every 1s it will re-send the query
local function update() local function update()
if util.time_ms() - last_update >= 500 then if util.time_ms() - last_update >= 1000 then
db.diag.get_comps() db.diag.get_comps()
last_update = util.time_ms() last_update = util.time_ms()
end end