Arduino Temperature Sensor Using LM35
Arduino Temperature Sensor Using LM35
by salab
The LM35 series are precision integrated-circuit • Suitable for Remote Applications
temperature devices with an output voltage linearly
proportional to the Centigrade temperature. LM35 is • Low-Cost Due to Wafer-Level Trimming
three terminal linear temperature sensor from
National semiconductors. It can measure temperature • Operates from 4 V to 30 V
from -55 degree Celsius to +150 degree Celsius. The
voltage output of the LM35 increases 10mV per • Less than 60- A Current Drain
degree Celsius rise in temperature. LM35 can be
operated from a 5V supply and the stand by current is • Low Self-Heating, 0.08°C in Still Air
less than 60uA. The pin out of LM35 is shown in the
figure below. • Non-Linearity Only ±¼°C Typical
• Linear + 10-mV/°C Scale Factor You can download the datasheet from below file.
(https://cdn.instructables.com/ORIG/FYZ/7FK0/JASJNMVP/FYZ7FK0JASJNMVP.pdf)
Connect the Circuit as shown in image and upload the following code.
/*Code designed by Sujay Alaspure in SA Lab */ float vout; //temporary variable to hold sensor reading
Serial.print("\t");
Serial.print(tempc);
First of all, I would like to thank you for reading this guide ! I hope it helps you.