![]() |
2009-12-06
, 17:35
|
Posts: 45 |
Thanked: 3 times |
Joined on Nov 2009
@ South Florida
|
#51
|
![]() |
2009-12-06
, 17:37
|
Posts: 45 |
Thanked: 3 times |
Joined on Nov 2009
@ South Florida
|
#52
|
The battery stamina does seem quite bad. I didn't make it through the 1st day.
I did notice that if I had no signal for several hours the battery would die a lot faster.
Also sometimes (rarely) when I connect the phone to the USB port on my Win7 PC it does not enter charging mode. One morning I had a almost dead phone.
My SIM card is 13 years old and says omnipoint on it which became voicestreamn and then t-mobile.
![]() |
2009-12-06
, 17:40
|
Posts: 45 |
Thanked: 3 times |
Joined on Nov 2009
@ South Florida
|
#53
|
Have you guys turned off GPS/Location services? My understanding is that the phone polls the GPS occasionally to display your location in your IM status etc - perhaps if it's disabled entirely in settings, your battery life will improve. At least with my iPhone, GPS goes through battery life like there's no tomorrow.
![]() |
2009-12-06
, 17:54
|
Posts: 5 |
Thanked: 2 times |
Joined on Dec 2009
|
#54
|
Ha ya at least I dont have a Pre lol but still would like to see a fix for this.
The fluctuations in battery life because of power cycles would be nowhere near the kinda fix I need. Your talking max and extra 30 minutes difference, not hours and hours (some people on here say they are using their phone in a similar way and getting 12-20 hours and I get 4-6...
Im thinking it could be coverage in my house, it fluctuates a lot, but still is this something I can fix or should I wait and pray for an OTA?
![]() |
2009-12-07
, 01:29
|
Posts: 486 |
Thanked: 251 times |
Joined on Oct 2009
|
#55
|
perl -w batt_mon.pl > 20091207bat.log
#!/usr/bin/perl -w print "# time\tlevel\t%chrg\tsec\tmah\tmVolts\tstate\tchg/dis\n"; while(1) { $now = time; @lines = `lshal | grep batt`; @level = split ' ', $lines[1]; @pct = split ' ', $lines[4]; @remtime = split ' ', $lines[10]; @mah = split ' ', $lines[12]; @mv = split ' ', $lines[17]; @st = split ' ', $lines[0]; @chrg = split ' ', $lines[8]; @disc = split ' ', $lines[9]; $cd = substr($chrg[2],0,1) . "/" . substr($disc[2],0,1); print "$now\t$level[2]\t$pct[2]\t$remtime[2]\t$mah[2]\t$mv[2]\t$st[2]\t$cd\n"; sleep 60 - time%60; }
![]() |
2009-12-07
, 01:36
|
Posts: 57 |
Thanked: 14 times |
Joined on Nov 2009
|
#56
|
![]() |
2009-12-07
, 13:06
|
Posts: 4 |
Thanked: 2 times |
Joined on Dec 2009
@ London
|
#57
|
The Following User Says Thank You to big_zippy For This Useful Post: | ||
![]() |
2009-12-07
, 19:46
|
Posts: 32 |
Thanked: 9 times |
Joined on Nov 2009
@ Norway
|
#58
|
I don't know whether to laugh or cry over this! I got my N900 last week and I think it is a brilliant piece of technology. The fact that you can write perl scripts to monitor the battery life is brilliant. The fact that such script, when run, will substantially eat into the already ridiculous battery life is a travesty.
BZ
![]() |
2009-12-07
, 20:42
|
Posts: 97 |
Thanked: 18 times |
Joined on Oct 2009
|
#59
|
![]() |
2009-12-07
, 20:52
|
Posts: 117 |
Thanked: 44 times |
Joined on Dec 2009
|
#60
|