maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Applications (https://talk.maemo.org/forumdisplay.php?f=41)
-   -   [Announce] utility to display tablet's internal temperature (https://talk.maemo.org/showthread.php?t=16415)

ag2 2008-02-10 09:12

[Announce] utility to display tablet's internal temperature
 
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

The link is in my signature.

Enjoy!

qwerty12 2008-02-10 09:18

Re: [Announce] utility to display tablet's internal temperature
 
Haha, your tools are great! :D

Thanks a lot!

BTW: N710's a new one :P

Oh yeah, is it me or does your website address keep changing :P?

cycroft 2008-02-10 10:25

Re: [Announce] utility to display tablet's internal temperature
 
you don't know N710 is the successor of N700 with WiMax ;-)

yerga 2008-02-10 10:36

Re: [Announce] utility to display tablet's internal temperature
 
Nice, but..
How do you know that treatment it's necessary to give to temp1_input number?

Karel Jansens 2008-02-10 11:02

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by ag2 (Post 140486)
I wrote a utility to display N810's internal temperature. I think it should also work for N800 and N710. 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

The link is in my signature.

Enjoy!

Question: Are you certain there is only one temperature sensor in the Itablets? The Newton used two sensors, one for external temperature and one for battery temperature, for its charge-monitoring thingie.

Saturn 2008-02-10 13:09

Re: [Announce] utility to display tablet's internal temperature
 
ag2, thanks a lot for yet another app.

Is it possible to have the same or similar option like in the battery-status for monitoring over time? (i.e. switched on with the -d N flag) as well as the date/time included?

For the moment, I will wrap it to a simple script with a sleep interleaved. :)

ag2 2008-02-10 19:45

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by qwerty12 (Post 140488)
Oh yeah, is it me or does your website address keep changing :P?

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.

ag2 2008-02-10 19:48

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by Saturn (Post 140528)

Is it possible to have the same or similar option like in the battery-status for monitoring over time? (i.e. switched on with the -d N flag) as well as the date/time included?

For the moment, I will wrap it to a simple script with a sleep interleaved. :)

Yeah, shouldn't be difficult to add. Stay tuned.

Benson 2008-02-11 17:22

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by Karel Jansens (Post 140503)
Question: Are you certain there is only one temperature sensor in the Itablets? The Newton used two sensors, one for external temperature and one for battery temperature, for its charge-monitoring thingie.

I'm not at all certain, but I doubt there's one for that purpose. Charging NiCd, Ni-MH, and, I think, Alkaline batteries* is best done by watching the temperature. But I beleive Li-ion are generally charged on their current/voltage characteristics only.

*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 $$.

ackbar 2008-02-12 16:16

Re: [Announce] utility to display tablet's internal temperature
 
Yeah.. I remember those rechargables.. Pure Energy sold them. I also saw an infomercial on TV from another company.

polossatik 2008-02-12 16:54

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by Benson (Post 141050)
*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 2008-02-12 17:00

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by ag2 (Post 140486)
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.

nygren 2008-07-22 04:21

Re: [Announce] utility to display tablet's internal temperature
 
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


identity 2009-02-17 22:56

Re: [Announce] utility to display tablet's internal temperature
 
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 2009-02-17 23:20

Re: [Announce] utility to display tablet's internal temperature
 
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 2009-02-18 00:26

Re: [Announce] utility to display tablet's internal temperature
 
Quote:

Originally Posted by ag2 (Post 140646)
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.

jdr93 2009-02-18 00:35

Re: [Announce] utility to display tablet's internal temperature
 
yes, what did happen to nitapps?


All times are GMT. The time now is 21:07.

vBulletin® Version 3.8.8