![]() |
2011-01-05
, 16:17
|
Posts: 210 |
Thanked: 69 times |
Joined on Apr 2010
@ NYC!!!!!!!!!!!!
|
#141
|
The Following User Says Thank You to ddiscodave For This Useful Post: | ||
![]() |
2011-01-05
, 16:29
|
Posts: 143 |
Thanked: 29 times |
Joined on Jul 2010
@ France, St Martin
|
#142
|
![]() |
2011-04-04
, 06:45
|
Posts: 262 |
Thanked: 315 times |
Joined on Jun 2010
|
#143
|
![]() |
2011-05-08
, 10:08
|
Posts: 1 |
Thanked: 0 times |
Joined on May 2011
|
#144
|
![]() |
2011-05-09
, 15:23
|
Posts: 1,336 |
Thanked: 3,932 times |
Joined on Jul 2010
@ Brittany, France
|
#145
|
sudo gainroot modprobe bq27x00_battery echo bq27x00_battery >> /etc/modules
![]() |
2011-05-09
, 15:29
|
Posts: 805 |
Thanked: 1,605 times |
Joined on Feb 2010
@ Gdynia, Poland
|
#146
|
Since a restoration using Backupmenu, my widget displays temperatures between 250 and 380 °C. It's pretty hot, yes.
[...]
Does anybody have an idea of what can lead to such wrong values?
![]() |
2011-05-09
, 16:30
|
Posts: 1,336 |
Thanked: 3,932 times |
Joined on Jul 2010
@ Brittany, France
|
#147
|
![]() |
2011-05-09
, 16:41
|
Posts: 805 |
Thanked: 1,605 times |
Joined on Feb 2010
@ Gdynia, Poland
|
#148
|
Oh, thanks for your answer!
So do you know how I should edit the widget to make it take into account 0.1 grades instead of grades? Currently I think the widget is still made for grades, so when it detects a temperature ranging between 200 and 300 units, it must say "Whoo hoo mate, your phone is burning; you wan't me to overclock the CPU? No way!"
I'm speaking about the "Temperature" button of the widget.
The Following User Says Thank You to misiak For This Useful Post: | ||
![]() |
2011-05-09
, 21:48
|
Posts: 805 |
Thanked: 1,605 times |
Joined on Feb 2010
@ Gdynia, Poland
|
#150
|
Well, this one. Sorry, this is the first of the thread so I did not think about the others further in the thread. My fault!
I use the version with battery indicator and min freq/max freq.
root leafpad /usr/local/bin/overclock
#!/bin/sh
TEMP=`cat /sys/class/power_supply/bq27200-0/temp`
TEMP=$((TEMP/10))
echo "Temp is :" $TEMP "C"
MAXSPEED="1150"
if [ $TEMP -gt "38" ] ; then MAXSPEED="1000" ; fi
if [ $TEMP -gt "40" ] ; then MAXSPEED="950" ; fi
if [ $TEMP -gt "43" ] ; then MAXSPEED="850" ; fi
if [ $TEMP -gt "45" ] ; then MAXSPEED="750" ; fi
if [ $TEMP -gt "47" ] ; then MAXSPEED="600" ; fi
echo "Setting max as :" $MAXSPEED "Mhz"
kernel-config limits 250 $MAXSPEED
echo -e "TEMPERATURE : <span font = \\"14\\"><b>`cat /sys/class/power_supply/bq27200-0/temp` C</b></span>
echo -e "TEMPERATURE : <span font = \\"14\\"><b>`awk '{ print $1/10}' < /sys/class/power_supply/bq27200-0/temp` C</b></span>