STM32 Nucleo and LM35 temperature sensor

In this example we will connect an LM35 temperature sensor to our Nucleo board and we will be using the MBed compiler

The LM35 series are precision integrated-circuit temperature sensors, whose output voltage is linearly proportional to the Celsius (Centigrade) temperature. The LM35 thus has an advantage over linear temperature sensors calibrated in Kelvin, as the user is not required to subtract a large constant voltage from its output to obtain convenient Centigrade scaling. The LM35 does not require any external calibration or trimming to provide typical accuracies of ±1/4°C at room temperature and ±3/4°C over a full -55 to +150°C  temperature range

Here is a picture of the pins, its important to get these correct or you can damage the sensor

 

Schematics and Connection

 

Very simple to connect

Vcc is 3v3
Gnd is any Gnd and output goes to Nucleo A0, you can see this below

 

nucleo and lm35
nucleo and lm35

 

Code

This example is for the mbed online compiler – https://os.mbed.com/compiler/

[codesyntax lang=”cpp”]

#include "mbed.h"

AnalogIn LM35(PA_0); //Setting pin PA0 (A0) as Anlog Input
Serial pc(SERIAL_TX, SERIAL_RX); //Create an object of Serial Class

int main()
{
float tempC,tempF,a[10],avg;
int i;

while(1)
{

avg=0;
for(i=0;i<10;i++)
{
a[i]=LM35.read();
wait(.02);
}
for(i=0;i<10;i++)
{
avg=avg+(a[i]/10);
}


tempC=(avg*3.685503686*100);
tempF=(9.0*tempC)/5.0 + 32.0;
pc.printf("temperature = %.0f ^C\r\n", tempC);

wait(1); 
}
}

[/codesyntax]

Output

Using a terminal program you should see something like this

temperature = 21 ^C
temperature = 21 ^C
temperature = 21 ^C
temperature = 21 ^C
temperature = 23 ^C
temperature = 24 ^C
temperature = 25 ^C
temperature = 25 ^C
temperature = 26 ^C
temperature = 26 ^C
temperature = 26 ^C

 

Links

KEYES LM35 analog temperature sensor module

Share
This div height required for enabling the sticky sidebar
Ad Clicks : Ad Views : Ad Clicks : Ad Views :