talasila
talasila

Reputation: 268

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

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.

Upvotes: 14

Views: 62481

Answers (9)

Emulk
Emulk

Reputation: 1

Try this one:

private float temperature = 0;

In onCreate put wìthis code:

    SensorManager mySensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
    Sensor AmbientTemperatureSensor
            = mySensorManager.getDefaultSensor(Sensor.TYPE_AMBIENT_TEMPERATURE);
    if (AmbientTemperatureSensor != null) {
        mySensorManager.registerListener(
                AmbientTemperatureSensorListener,
                AmbientTemperatureSensor,
                SensorManager.SENSOR_DELAY_NORMAL);
    }

And the method below:

private final SensorEventListener AmbientTemperatureSensorListener
            = new SensorEventListener() {

        @Override
        public void onAccuracyChanged(Sensor sensor, int accuracy) {
            // TODO Auto-generated method stub

        }

        @Override
        public void onSensorChanged(SensorEvent event) {
            if (event.sensor.getType() == Sensor.TYPE_AMBIENT_TEMPERATURE) {
                temperature = event.values[0];
            }
        }

    };

Upvotes: 0

Str Rev
Str Rev

Reputation: 1

There is the age old method of letting the phone and a "good" thermometer stabilize at room temperature (a few hours) and read both.

Then put it outside in a nice wintry garage at about 35F let it stabilize. Then pray for linearity.

Empirical is always nice. I am very interested in measuring a constant temperature in an empty house, and watch for the temperature dropping (or rising!!)

Bradshaw at Buzzards Bay

Upvotes: 0

Otra
Otra

Reputation: 8158

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.)

Update:

API level 14 (i.e. Android 4.0) onwards, support for measuring ambient temperature has been added (via TYPE_AMBIENT_TEMPERATURE). [Android doc reference]

This, however, will work only on devices with ambient temperature sensor.

Upvotes: 12

drdrej
drdrej

Reputation: 908

this sounds interesting:

http://developer.android.com/reference/android/hardware/Sensor.html#TYPE_AMBIENT_TEMPERATURE

from API >= 13

Upvotes: 0

ntvfx
ntvfx

Reputation: 21

i have same your question long time ago. And what my found is :

  • check this offical site for Environment sensor
  • this tuts for environment sensor : Ambient Temperature (room temp) Ambient Light ... Tutsplus. on my phone only Ambient Light work
  • now as i know only samsung galaxy S4 have Ambient Temperature. if you have S4 search Holo Ambient Temperature on gg playstore .

Upvotes: 0

OriolJ
OriolJ

Reputation: 2772

It seems that there is a new sensor in the API.

This one is for the ambient temperature, but probably there are just a few devices with this implemented.

UPDATE: it seems that the Galaxy S4 is the first phone integrating ambient temperature sensor

Upvotes: 11

Kiwi44
Kiwi44

Reputation: 11

You can use the iCelsius Wireless from Kickstarter. It has an API. It is impossible to measure accurately temperature using an internal sensor from a SmartPhone. It will always be few degree to high.

Upvotes: 1

Codeman
Codeman

Reputation: 12375

Take a look at the Sensor class in the documentation.

You need to do something along the lines of this:

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!

Upvotes: 2

Austin Hanson
Austin Hanson

Reputation: 22040

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.

Upvotes: 2

Related Questions