vote up 1 vote down star
1

I am connecting a LilyPad Temperature sensor to a LilyPad Arduino 328 Main Board with the goal of reading fairly accurate ambient temperature readings. The sensor is receiving power and giving a responses I'm able to read over serial.

The problem I am confronted with is that reading from the sensor is giving me very unusual - although consistent numbers. I'm reading the analog sensor input and converting to volts like this...

loop(){
    float therm;   
    therm = analogRead(2); // Read from sensor through Analog 2
    therm *= (5.0/1024.0); // 5 volts / 1024 units of analog resolution
    delay(100);
}

This yields a consistent reading of about 1.1 Volts which the sensor documentation indicates would be a ambient temp of about 60 degrees Celsius when the true ambient temp is about 23 degrees. The sensor is not close in proximity to any other electronics so I can't foresee that being the problem.

Is my code for reading the sensor incorrect? Could my sensor be faulty?

flag

2 Answers

vote up 3 vote down check

Isn't the lilypad a 3.3V arduino, so that means it should be (3.3/1024.0), which would be 0.726V, or 22.6 C?

link|flag
vote up 0 vote down

According to this documentation, analogRead returns an integer. Have you tried casting it to a float like so:

therm = (float)analogRead(2);

What does the sensor voltage read on a voltmeter? Does the reading change when you change the temperature of the sensor? (Holding your hand on it should be enough to change the reading.)

link|flag
1  
you can safely cast int -> float in c (with some precision loss). The original answer would be useful, though. – FryGuy Nov 3 at 2:17

Your Answer

Get an OpenID
or

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