whitespaces removed

This commit is contained in:
Luke Bonham 2016-04-04 14:09:54 +02:00
parent e061c2ec06
commit fe8e24e5f5
2 changed files with 14 additions and 15 deletions

View file

@ -71,38 +71,37 @@ local function worker(args)
-- energy_now(P)[uWh], charge_now(I)[uAh] -- energy_now(P)[uWh], charge_now(I)[uAh]
local energy_now = tonumber(first_line(bstr .. "/energy_now") or local energy_now = tonumber(first_line(bstr .. "/energy_now") or
first_line(bstr .. "/charge_now")) first_line(bstr .. "/charge_now"))
-- energy_full(P)[uWh], charge_full(I)[uAh], -- energy_full(P)[uWh], charge_full(I)[uAh],
local energy_full = tonumber(first_line(bstr .. "/energy_full") or local energy_full = tonumber(first_line(bstr .. "/energy_full") or
first_line(bstr .. "/charge_full")) first_line(bstr .. "/charge_full"))
local energy_percentage = tonumber(first_line(bstr .. "/capacity")) or local energy_percentage = tonumber(first_line(bstr .. "/capacity")) or
math.floor((energy_now / energy_full) * 100) math.floor((energy_now / energy_full) * 100)
bat_now.status = first_line(bstr .. "/status") or "N/A" bat_now.status = first_line(bstr .. "/status") or "N/A"
bat_now.ac_status = first_line(astr .. "/online") or "N/A" bat_now.ac_status = first_line(astr .. "/online") or "N/A"
-- if rate = 0 or rate not defined skip the round -- if rate = 0 or rate not defined skip the round
if not (rate_power and rate_power > 0) and if not (rate_power and rate_power > 0) and
not (rate_current and rate_current > 0) and not (rate_current and rate_current > 0) and
not (bat_now.status == "Full") not (bat_now.status == "Full")
then then
return return
end end
local rate_time = 0 local rate_time = 0
if bat_now.status == "Charging" then if bat_now.status == "Charging" then
rate_time = (energy_full - energy_now) / (rate_power or rate_current) rate_time = (energy_full - energy_now) / (rate_power or rate_current)
elseif bat_now.status == "Discharging" then elseif bat_now.status == "Discharging" then
rate_time = energy_now / (rate_power or rate_current) rate_time = energy_now / (rate_power or rate_current)
end end
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)
local watt = rate_power and (rate_power / 1e6) or (rate_voltage * rate_current) / 1e12
local watt = rate_power and (rate_power / 1e6) or (rate_voltage * rate_current) / 1e12
bat_now.perc = string.format("%d", energy_percentage) bat_now.perc = string.format("%d", energy_percentage)
bat_now.time = string.format("%02d:%02d", hours, minutes) bat_now.time = string.format("%02d:%02d", hours, minutes)
@ -129,7 +128,7 @@ local function worker(args)
end end
end end
newtimer(battery, timeout, update) newtimer(battery, timeout, update)
return setmetatable(bat, { __index = bat.widget }) return setmetatable(bat, { __index = bat.widget })
end end