The Following 4 Users Say Thank You to jwittema For This Useful Post: | ||
![]() |
2010-04-06
, 16:29
|
Posts: 16 |
Thanked: 15 times |
Joined on Jan 2010
@ Norway
|
#42
|
![]() |
2010-04-07
, 17:25
|
Posts: 18 |
Thanked: 3 times |
Joined on Dec 2009
|
#43
|
![]() |
2010-04-07
, 22:00
|
|
Posts: 1,259 |
Thanked: 1,341 times |
Joined on Oct 2009
@ Germany
|
#44
|
it is normal that the CPU Graph is between 40-50% when the N900 is shutdown and hangs on the power supply?
![]() |
2010-04-08
, 17:59
|
Posts: 22 |
Thanked: 123 times |
Joined on Feb 2010
|
#45
|
The Following 4 Users Say Thank You to jwittema For This Useful Post: | ||
![]() |
2010-04-09
, 07:14
|
Posts: 58 |
Thanked: 38 times |
Joined on Jan 2010
|
#46
|
![]() |
2010-04-09
, 08:02
|
Posts: 22 |
Thanked: 123 times |
Joined on Feb 2010
|
#47
|
it is normal that the CPU Graph is between 40-50% when the N900 is shutdown and hangs on the power supply?
why does it indicate that the battery is always charging. I think you invented free energy.
The Following 2 Users Say Thank You to jwittema For This Useful Post: | ||
![]() |
2010-04-10
, 01:40
|
|
Posts: 682 |
Thanked: 208 times |
Joined on Jan 2010
@ UK
|
#48
|
![]() |
2010-04-10
, 11:14
|
Posts: 22 |
Thanked: 123 times |
Joined on Feb 2010
|
#49
|
sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table data" sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table connection" sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table cpu" sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table charging"
The Following 3 Users Say Thank You to jwittema For This Useful Post: | ||
![]() |
2010-04-10
, 11:23
|
|
Posts: 682 |
Thanked: 208 times |
Joined on Jan 2010
@ UK
|
#50
|
To reset all settings to default values you can remove the config file /home/user/.config/BatteryGraph/BatteryGraph.ini
To reset the database you can remove the database file /home/user/.BatteryGraph/BatteryGraphDB.sqlite (but then you would probably have to reset your device before the background daemon will record new data).
You can also drop the tables from the database with the following commands in a terminal (or only 1 if you want to delete something specific):
After that you would only need to run BatteryGraph to automatically recreate the tables.Code:sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table data" sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table connection" sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table cpu" sqlite3 /home/user/.BatteryGraph/BatteryGraphDB.sqlite "drop table charging"
PS the above is untested but should work
Transparency: I tried that for charging status, but it made kinetic scrolling kinda slow. Right now only the part of the graph that is visible is drawn. Kinetic scrolling performance could be improved by drawing the entire (which right now can be 21 days wide) graph into memory, but that will cause a noticeable delay when enabling or disabling graph elements (because the entire graph needs to be redrawn) and cause a higher memory usage.
Developer of BatteryGraph