Ks0022 keyestudio LM35 Linear Temperature Sensor: Difference between revisions
Keyestudio (talk | contribs) |
Keyestudio (talk | contribs) |
||
Line 46: | Line 46: | ||
==Get One Now== | ==Get One Now== | ||
'''Official Website''' | |||
http://www.keyestudio.com/keyestudio-lm35-linear-temperature-sensor.html | http://www.keyestudio.com/keyestudio-lm35-linear-temperature-sensor.html | ||
'''Amazon Store''' | |||
https://www.amazon.com/Keyestudio-Linear-Temperature-Arduino-raspberry/dp/B016ZTVMDS/ref=sr_1_3?ie=UTF8&qid=1479459719&sr=8-3&keywords=keyestudio+LM35+Linear+Temperature+Sensor | https://www.amazon.com/Keyestudio-Linear-Temperature-Arduino-raspberry/dp/B016ZTVMDS/ref=sr_1_3?ie=UTF8&qid=1479459719&sr=8-3&keywords=keyestudio+LM35+Linear+Temperature+Sensor | ||
[[Category: Sensor]] | [[Category: Sensor]] |
Revision as of 15:17, 14 November 2017
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 together.
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
- Size: 30*20mm
- Weight: 3g
Connection Diagram
Sample Code
void setup() { Serial.begin(9600);//Set Baud Rate to 9600 bps } void loop() { int val; 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); }
Resources
Video
http://www.keyestudio.com/wp/2016/05/ks0023-keyestudio-18b20-temperature-sensor/
Datasheet
http://www.keyestudio.com/files/index/download/id/1463649325/
Get One Now
Official Website
http://www.keyestudio.com/keyestudio-lm35-linear-temperature-sensor.html
Amazon Store