mirror of
https://github.com/20kdc/OC-KittenOS.git
synced 2025-04-04 11:48:39 +11:00
Fix app-batmon losing track of time
This commit is contained in:
parent
6237871d36
commit
1e3bf096d5
@ -5,8 +5,8 @@
|
|||||||
-- Port of the original 'batmon.lua' from KittenOS Legacy.
|
-- Port of the original 'batmon.lua' from KittenOS Legacy.
|
||||||
local window = neo.requireAccess("x.neo.pub.window", "window")(10, 2)
|
local window = neo.requireAccess("x.neo.pub.window", "window")(10, 2)
|
||||||
|
|
||||||
-- OCE/s, OCE at last check, uptime of last check
|
-- OCE/s, OCE at last check, uptime of last timer set, uptime of last check
|
||||||
local lastChange, lastValue, lastTimer = 0
|
local lastChange, lastValue, lastTimer, lpTimer = 0
|
||||||
local usage = {
|
local usage = {
|
||||||
"[####]:",
|
"[####]:",
|
||||||
"[###:]:",
|
"[###:]:",
|
||||||
@ -45,8 +45,9 @@ end
|
|||||||
local function update()
|
local function update()
|
||||||
local nv = os.energy()
|
local nv = os.energy()
|
||||||
if lastValue then
|
if lastValue then
|
||||||
lastChange = (nv - lastValue) / (os.uptime() - lastTimer)
|
lastChange = (nv - lastValue) / (os.uptime() - lpTimer)
|
||||||
end
|
end
|
||||||
|
lpTimer = os.uptime()
|
||||||
lastValue = nv
|
lastValue = nv
|
||||||
lastTimer = os.uptime() + 10
|
lastTimer = os.uptime() + 10
|
||||||
if lastChange then
|
if lastChange then
|
||||||
|
Loading…
Reference in New Issue
Block a user