Spotfist
|
2010-03-03
, 19:40
|
Posts: 478 |
Thanked: 101 times |
Joined on Feb 2010
|
#141
|
|
2010-03-03
, 19:56
|
|
Posts: 670 |
Thanked: 359 times |
Joined on May 2007
|
#142
|
does anyone know how I can get hold of the graph data in txt? also has there been any final verdict on why the battery doesn't charge to 100% or why in my previous graph the are mini peaks during the day when not even charging?!?! i get them often, surely there has to be an explenation for this???
|
2010-03-03
, 20:28
|
Posts: 478 |
Thanked: 101 times |
Joined on Feb 2010
|
#143
|
|
2010-03-03
, 23:28
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#144
|
hal-device bme | grep battery.reporting | awk -F. '{print $3}' | sort | awk '$1 == "current" { current = $3}; $1== "design" {print current "/" $3}'
#!/bin/bash # creating endless loop while [ 1 ]; do # print date and time echo -n $(date) >> /home/user/MyDocs/battery_raw.txt # print some text in between echo -n " - mAh: " >> /home/user/MyDocs/battery_raw.txt # print "current/full-charge" echo $(hal-device bme | grep battery.reporting | awk -F. '{print $3}' | sort | awk '$1 == "current" { current = $3}; $1== "design" {print current "/" $3}') >> /home/user/MyDocs/battery_raw.txt # sleep some time (in seconds) - for example 5 minutes sleep 300 done
Thu Mar 4 00:24:06 CET 2010 - mAh: 1022/1265 Thu Mar 4 00:24:11 CET 2010 - mAh: 1022/1265 Thu Mar 4 00:24:16 CET 2010 - mAh: 1022/1265 Thu Mar 4 00:24:21 CET 2010 - mAh: 1022/1265
sh MyDocs/.documents/battery_raw.sh
The Following User Says Thank You to b666m For This Useful Post: | ||
|
2010-03-03
, 23:37
|
Posts: 1,258 |
Thanked: 672 times |
Joined on Mar 2009
|
#145
|
|
2010-03-04
, 07:48
|
Posts: 478 |
Thanked: 101 times |
Joined on Feb 2010
|
#146
|
|
2010-03-04
, 15:45
|
|
Posts: 1,090 |
Thanked: 476 times |
Joined on Jan 2010
@ Ingolstadt, Germany
|
#147
|
thanks b666m but is there anyway to get the data from battery eye as it already has a number of weeks worth od data... surely the data file must be somewhere...?
|
2010-03-08
, 12:19
|
Posts: 113 |
Thanked: 26 times |
Joined on Feb 2010
@ Port of Spain, Trinidad & Tobago
|
#148
|
The Following User Says Thank You to cjsegninir For This Useful Post: | ||
|
2010-03-08
, 15:47
|
Posts: 41 |
Thanked: 39 times |
Joined on Jan 2010
@ ireland
|
#149
|
I
Apart from it, I have to charge battery every night. I consider I'm not a heavy-heavy user. I make/receive a couple of calls, send around 5sms, browse 20min in the mornings, maybe 30-1hr music and 30min games during the day, taking some notes or putting something under the calendar and 1-2hrs of games/browsing/IM in the evenings.
The Following User Says Thank You to oskarmat For This Useful Post: | ||
|
2010-03-09
, 10:01
|
|
Posts: 909 |
Thanked: 216 times |
Joined on Nov 2009
@ Bremen, Germany
|
#150
|