mirror of https://github.com/lcpz/lain.git
show true battery energy percentage
This commit is contained in:
parent
a659d1a4bc
commit
727997d5e0
|
@ -131,7 +131,7 @@ local function worker(args)
|
||||||
|
|
||||||
local hours = math.floor(rate_time)
|
local hours = math.floor(rate_time)
|
||||||
local minutes = math.floor((rate_time - hours) * 60)
|
local minutes = math.floor((rate_time - hours) * 60)
|
||||||
bat_now.perc = tonumber(string.format("%d", math.floor(math.min(100, sum_energy_percentage / #batteries))))
|
bat_now.perc = math.floor((sum_energy_now / sum_energy_full) * 100)
|
||||||
bat_now.time = string.format("%02d:%02d", hours, minutes)
|
bat_now.time = string.format("%02d:%02d", hours, minutes)
|
||||||
bat_now.watt = tonumber(string.format("%.2f", sum_rate_energy / 1e6))
|
bat_now.watt = tonumber(string.format("%.2f", sum_rate_energy / 1e6))
|
||||||
elseif bat_now.status == "Full" then
|
elseif bat_now.status == "Full" then
|
||||||
|
|
Loading…
Reference in New Issue