Active Topics

 



Notices


Reply
Thread Tools
polossatik's Avatar
Posts: 126 | Thanked: 23 times | Joined on Jan 2008
#11
Originally Posted by Benson View Post
*Yes, recharging Alkaline batteries may be done, but you only get practically something like 20 cycles out of them with reasonable capacity. And they can't be charged at any decent speed, so it's not really useful enough for the charger to be marketable.**

**Actually, as I wrote that, I remembered there was a company producing "Renewal" batteries -- they couldn't be recharged, being alkaline, but they could be "renewed" in a special battery charger "renewing station". Wonder if they were just selling an alkaline charger, and plain alkaline cells (with a "Renewal" label) for higher $$.
you have charger's like http://the-gadgeteer.com/review/batt...tery_recharger who you can buy.

Or you can simply charge them using a current limited source and a timer... 50mA for about 16hours for a AA one
 
bluesubaru's Avatar
Posts: 197 | Thanked: 39 times | Joined on Jan 2008 @ Long Island
#12
Originally Posted by ag2 View Post
I wrote a utility to display N810's internal temperature. I think it should also work for N800 and N770. When idle, tablets generate almost no heat, so this sensor can also measure the ambient temperature in your room.

[user@nokia ~]$ internal-temp
23.25C Enjoy!
Any way to get Fahrenheit out of that? Or a script to convert the output? I don't know how much math can be supported in OS2008's scripting.
__________________
Paul <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
Linux newbie with a N810 OS2008 >>>>>>>>>>>>>>>>>> Art is the lie that shows us the Truth
Don't let a suitcase full of cheese be your big fork & spoon
 
Posts: 8 | Thanked: 7 times | Joined on Jul 2008
#13
Here's an updated version that outputs both F and C:

Code:
#!/bin/sh

t=`cat /sys/devices/platform/i2c_omap.1/i2c-1/1-0048/temp1_input 2>/dev/null`
if [ "$t" = "" ]
then
  echo "No temperature sensor detected" > /dev/stderr
  exit 1
else
  c=`echo $t | sed -e 's/\(.*\)\(..\).$/\1\.\2C/'`
  f=`expr $t \* 9 / 5 + 32000 | sed -e 's/\(.*\)\(..\).$/\1\.\2F/'`
  echo $c $f
fi
 

The Following 6 Users Say Thank You to nygren For This Useful Post:
Posts: 1 | Thanked: 0 times | Joined on Oct 2008
#14
Has anyone archived or reposted internal-temp? the nitapps site is offline pending renewal. I had to flash my n810 and Backup doesn't seem to keep this file. Thanks...
 
Cadabena's Avatar
Posts: 240 | Thanked: 71 times | Joined on Jun 2008
#15
omweather in the Maemo Extras repository can show the internal temperature in either degrees Celcius or degrees Fahrenheit. I'm not sure this simple tool would be needed when omweather can show the temperature on the home screen, along with the weather.
 
andrewfblack's Avatar
Posts: 1,656 | Thanked: 1,196 times | Joined on Apr 2008 @ Alabama, USA
#16
Originally Posted by ag2 View Post
It turns out that the last site (maemostuff) was infringing on the maemo trademark. Nokia asked me to take it down (very nicely) and I did.
When did that happen I'm sure I will be getting an email about maemobox.org soon then.
__________________
Home Page - Preenv Wiki

**All Posts are made as a Community Member and not as a Super Moderator of this site.
 
Posts: 130 | Thanked: 13 times | Joined on Nov 2005
#17
yes, what did happen to nitapps?
 
Reply


 
Forum Jump


All times are GMT. The time now is 00:20.