Ks0022 keyestudio LM35 Linear Temperature Sensor: Difference between revisions

From Keyestudio Wiki
Jump to navigation Jump to search
 
(6 intermediate revisions by the same user not shown)
Line 20: Line 20:
<br>
<br>
==Connection Diagram ==
==Connection Diagram ==
<br>[[File:222.png|500px|frameless|thumb]]<br>  
<br>[[File:Ks0022.png|700px|frameless|thumb]]<br>  


<br>
<br>
==Sample Code ==
==Sample Code ==
<pre>
<pre>
Line 30: Line 31:
}
}
 void loop()
 void loop()
{  int val;
{  unsigned int val;
    int dat;
    unsigned int dat;
    val=analogRead(0);//Connect LM35 on Analog 0
    val=analogRead(0);//Connect LM35 on Analog 0
    dat=(500 * val) /1024;;
    dat=(500 * val) /1024;
    Serial.print("Temp:"); //Display the temperature on Serial monitor
    Serial.print("Temp:"); //Display the temperature on Serial monitor
    Serial.print(dat);
    Serial.print(dat);
Line 42: Line 43:


<br>
<br>
== Result ==
== Result ==
<br>[[File:Ks0349-39-2.png|800px|frameless|thumb]]<br>
<br>[[File:Ks0349-39-2.png|800px|frameless|thumb]]<br>
Wire it up as the above diagram and upload well the code to the board, then open the serial monitor and set the baud rate as 9600, finally you will see the current temperature value shown below. The value may be slight difference due to different place and weather.
Wire it up as the above diagram and upload well the code to the board, then open the serial monitor and set the baud rate as 9600, finally you will see the current temperature value shown below. The value may be slight difference due to different place and weather.<br>
<br>[[File:Ks0349-39-3.png|600px|frameless|thumb]]<br>
<br>[[File:Ks0349-39-3.png|600px|frameless|thumb]]<br>


<br>
<br>
==Resources ==
==Resources ==


Line 53: Line 56:
http://video.keyestudio.com/ks0022/
http://video.keyestudio.com/ks0022/


* '''PDF'''<br>
* '''PDF and Code'''<br>
https://drive.google.com/open?id=1K2cvRFCatWx-f1oHeG3rCrf6GKx1DYmP
https://fs.keyestudio.com/KS0022


<br>
<br>

Latest revision as of 14:41, 7 January 2021

keyestudio LM35 Linear Temperature Sensor


thumb


Introduction

LM35 Linear Temperature Sensor is based on semiconductor LM35 temperature sensor. It can be used to detect ambient air temperature.
This sensor offers a functional range among 0 degree Celsius to 100 degree Celsius. Sensitivity is 10mV per degree Celsius. The output voltage is proportional to the temperature.
This sensor is commonly used as a temperature measurement sensor. It includes thermocouples, platinum resistance, and thermal resistance and temperature semiconductor chips.
The chip is commonly used in high temperature measurement thermocouples. Platinum resistance temperature sensor is used in the measurement of 800 degrees Celsius, while the thermal resistance and semiconductor temperature sensor is suitable for measuring the temperature of 100-200 degrees or below, in which the application of a simple semiconductor temperature sensor is good in linearity and high in sensitivity. The LM35 linear temperature sensor and sensor-specific Arduino shield can be easily combined.
thumb


Specification

  • Based on the semiconductor LM35 temperature sensor
  • Can be used to detect ambient air temperature
  • Sensitivity: 10mV per degree Celcius
  • Functional Range: 0 degree Celsius to 100 degree Celsius


Connection Diagram


thumb


Sample Code

void setup()
{
    Serial.begin(9600);//Set Baud Rate to 9600 bps
}
 void loop()
{   unsigned int val;
    unsigned int dat;
    val=analogRead(0);//Connect LM35 on Analog 0
    dat=(500 * val) /1024;
    Serial.print("Temp:"); //Display the temperature on Serial monitor
    Serial.print(dat);
    Serial.println("C");
    delay(500);
}


Result


thumb
Wire it up as the above diagram and upload well the code to the board, then open the serial monitor and set the baud rate as 9600, finally you will see the current temperature value shown below. The value may be slight difference due to different place and weather.

thumb


Resources

  • Video

http://video.keyestudio.com/ks0022/

  • PDF and Code

https://fs.keyestudio.com/KS0022


Get One Now