View Single Post
Posts: 1,203 | Thanked: 3,027 times | Joined on Dec 2010
#263
ed_boner:
Code:
lshal > info.txt
That'll give you a break down of lots of hardware info. You can then search for "battery" in a text editor or using grep.

You need the following few bits of info.
Code:
battery.charge_level.percentage = 92  (0x5c)  (int)
...
battery.reporting.current = 1161  (0x489)  (int)
battery.reporting.design = 1261  (0x4ed)  (int)
My phone is apparently fully charged when this was taken. The charge level is calculated like so:

(1161/1261) x 100 = 92%

It's a two year old battery so it won't charge to the designed amount.
Try comparing the charge level here with the reported 85% you got elsewhere.
 

The Following User Says Thank You to Android_808 For This Useful Post: