I am developing an android app for my project, I need to find room temperature as part of it. I am using Droid 2 A955 model for testing.

My Questions are:

  1. What sensors need to be available in my Android phone to perform this temperature sensing task?

  2. Can Ambient Light Sensor (available in Droid 2) help in doing this task?

  3. Is there any Android api to find/sense room temperature programmatically in my android code?

Thanks in advance for your help.

link|improve this question
#2 is either pointless or quite open ended. With some external items, almost anything could "help" for example you could point the camera at a thermometer, or aim a light that encodes the temperature at the light sensor. – Chris Stratton Aug 8 '11 at 17:53
Yes, I agree #2 is unrelated. But, I was doubting "Thermo" app in android market, how exactly this app is giving the room temp. Is it a fake app? "appbrain.com/app/thermo/com.antonio.thermo2.activity"; – tinku Aug 8 '11 at 21:11
feedback

3 Answers

up vote 1 down vote accepted

To answer all three of your questions in one fell swoop, no, I don't believe so. There can be a temperature sensor in android devices, but it senses the temperature of the battery, not the outside temperature. It would not provide an accurate gauge for that purpose.

I'm not sure how an ambient light sensor would help with temperature, it can be very bright out but it could be in an air conditioned room.

Lastly: there are lots of examples of temperature apps, but again, most are related to the battery.

Edit: Official documentation says:

Device implementations MAY but SHOULD NOT include a thermometer (i.e. temperature sensor.) If a device implementation does include a thermometer, it MUST measure the temperature of the device CPU. It MUST NOT measure any other temperature. (Note that this sensor type is deprecated in the Android 2.3 APIs.)

source: http://static.googleusercontent.com/external_content/untrusted_dlcp/source.android.com/en/us/compatibility/android-2.3-cdd.pdf

link|improve this answer
Thanks for the reference, now I understand the usage of temp sensor in droid 2. – tinku Aug 8 '11 at 21:13
feedback

You'll want to check out the Sensor reference docs. Offhand, I don't think there are accessible temperature sensors on-board most handhelds though.

link|improve this answer
feedback

Take a look at the Sensor class in the documentation.

You need to do something along the lines of this (edited from the documentation):

public class SensorActivity extends Activity, implements SensorEventListener {
 private final SensorManager mSensorManager;
 private final Sensor mTemp;

 public SensorActivity() {
     mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
     mtemp = mSensorManager.getDefaultSensor(Sensor.TYPE_TEMPERATURE);
 }

 protected void onResume() {
     super.onResume();
     mSensorManager.registerListener(this, mTemp, SensorManager.SENSOR_DELAY_NORMAL);
 }

 protected void onPause() {
     super.onPause();
     mSensorManager.unregisterListener(this);
 }

 public void onAccuracyChanged(Sensor sensor, int accuracy) {
 }

 public void onSensorChanged(SensorEvent event) {
 }

}

This should give you access to the temperature sensors in it's own activity.

Play with this and see what you can find. The documentation has great examples for other types of sensors, the temp sensor should be even simpler than most of the provided ones.

Hope this helps!

link|improve this answer
1  
Can you state for a fact that this provides an ambient temperature and not a CPU or battery temp? – Chris Stratton Aug 8 '11 at 17:51
This is in fact the battery/ CPU temperature. Android API 14 (Ice Cream Sandwich) now supports Sensor.TYPE_AMBIENT_TEMPERATURE. – Tom Dec 2 '11 at 11:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.