Fix for #177
Suggestion to calculate watt for battery. Not sure about the time_rat, was it correct before?
This commit is contained in:
parent
fbc8c2ba7b
commit
8c8d2925a5
1 changed files with 7 additions and 13 deletions
|
@ -63,14 +63,8 @@ local function worker(args)
|
||||||
|
|
||||||
if present == "1"
|
if present == "1"
|
||||||
then
|
then
|
||||||
local rate = tonumber(first_line(bstr .. "/power_now"))
|
local ratep = tonumber(first_line(bstr .. "/power_now"))
|
||||||
local current_now = false
|
local ratec = tonumber(first_line(bstr .. "/current_now"))
|
||||||
|
|
||||||
if not rate then
|
|
||||||
rate = tonumber(first_line(bstr .. "/current_now"))
|
|
||||||
current_now = true
|
|
||||||
end
|
|
||||||
|
|
||||||
local ratev = tonumber(first_line(bstr .. "/voltage_now"))
|
local ratev = tonumber(first_line(bstr .. "/voltage_now"))
|
||||||
|
|
||||||
local rem = tonumber(first_line(bstr .. "/energy_now") or
|
local rem = tonumber(first_line(bstr .. "/energy_now") or
|
||||||
|
@ -85,10 +79,10 @@ local function worker(args)
|
||||||
local time_rat = 0
|
local time_rat = 0
|
||||||
if bat_now.status == "Charging"
|
if bat_now.status == "Charging"
|
||||||
then
|
then
|
||||||
time_rat = (tot - rem) / rate
|
time_rat = (tot - rem) / (ratep or ratec)
|
||||||
elseif bat_now.status == "Discharging"
|
elseif bat_now.status == "Discharging"
|
||||||
then
|
then
|
||||||
time_rat = rem / rate
|
time_rat = rem / (ratep or ratec)
|
||||||
end
|
end
|
||||||
|
|
||||||
local hrs = math.floor(time_rat)
|
local hrs = math.floor(time_rat)
|
||||||
|
@ -109,10 +103,10 @@ local function worker(args)
|
||||||
bat_now.perc = "0"
|
bat_now.perc = "0"
|
||||||
end
|
end
|
||||||
|
|
||||||
if current_now then
|
if ratep then
|
||||||
bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)
|
bat_now.watt = string.format("%.2fW", ratep)
|
||||||
else
|
else
|
||||||
bat_now.watt = string.format("%.2fW", rate)
|
bat_now.watt = string.format("%.2fW", (ratev * ratec) / 1e12)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue