]> git.madduck.net Git - etc/awesome.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Fix for #177
authorStefan Wagner <stwa@users.noreply.github.com>
Tue, 22 Mar 2016 14:55:55 +0000 (15:55 +0100)
committerStefan Wagner <stwa@users.noreply.github.com>
Tue, 22 Mar 2016 14:55:55 +0000 (15:55 +0100)
Suggestion to calculate watt for battery.
Not sure about the time_rat, was it correct before?

widgets/bat.lua

index 56bba23cf35a21c573392de3bb5a970f0d87b3ae..22584db610dcc155d7635f74ec4b014e4c4727fc 100644 (file)
@@ -63,14 +63,8 @@ local function worker(args)
 
         if present == "1"
         then
-            local rate = tonumber(first_line(bstr .. "/power_now"))
-            local current_now = false
-
-            if not rate then
-                rate = tonumber(first_line(bstr .. "/current_now"))
-                current_now = true
-            end
-
+            local ratep    = tonumber(first_line(bstr .. "/power_now"))
+            local ratec    = tonumber(first_line(bstr .. "/current_now"))
             local ratev    = tonumber(first_line(bstr .. "/voltage_now"))
 
             local rem      = tonumber(first_line(bstr .. "/energy_now") or
@@ -85,10 +79,10 @@ local function worker(args)
             local time_rat = 0
             if bat_now.status == "Charging"
             then
-                time_rat = (tot - rem) / rate
+                time_rat = (tot - rem) / (ratep or ratec)
             elseif bat_now.status == "Discharging"
             then
-                time_rat = rem / rate
+                time_rat = rem / (ratep or ratec)
             end
 
             local hrs = math.floor(time_rat)
@@ -109,10 +103,10 @@ local function worker(args)
                 bat_now.perc = "0"
             end
 
-            if current_now then
-                bat_now.watt = string.format("%.2fW", (rate * ratev) / 1e12)
+            if ratep then
+                bat_now.watt = string.format("%.2fW", ratep)
             else
-                bat_now.watt = string.format("%.2fW", rate)
+                bat_now.watt = string.format("%.2fW", (ratev * ratec) / 1e12)
             end
         end