Temperature Analog Sensor Module LM35D

  • Was  RM15.00 
  • RM10.00

  • Product Code: LM35D module
  • Availability: In Stock

 

The Arduino LM35 Linear Temperature Sensor module is based on the semiconductor LM35 temperature sensor. The LM35 Linear Temperature Sensor module can be used to detect ambient air temperature. Sensitivity is 10mV per degree Celsius. The output voltage is proportional to the temperature.It is commonly used as a temperature measurement sensors. It includes thermocouples, platinum resistance, thermal resistance and temperature semiconductor chips, which commonly used in high-temperature measurement thermocouples. The LM35 linear temperature sensor and sensor-specific expansion of Arduino board, in combination, can be very easy to achieve.

 

Features

  • Based on the semiconductor LM35 temperature sensor
  • Can be used to detect ambient air temperature
  • Calibrated directly in ° Celsius (Centigrade)
  • Linear + 10 mV/°C Scale Factor
  • 0.5°C Ensure accuracy (at +25°C)​

 

Specifications

  • Operates voltage: DC 4V to 30V
  • Current: <60uA
  • Output signal type: Analog
  • Sensitivity: 10mV per degree Celcius
  • Functional range: 0°C to 100°C

 

Connect LM35D Module with Arduino

VCC - 5V
GND - GND
S   - Analog pin0

 

Arduino Sketch

int potPin = 0;                    
float temperature = 0;              
long val=0;
               
void setup()
{
  Serial.begin(9600);
}

void loop()                     
{
   val=analogRead(potPin);
   temperature = (val*0.0048828125*100);         
   Serial.print("Tep=  ");
   Serial.print(temperature);
   Serial.println(" C");
   delay(500);
 }

Write a review

Note: HTML is not translated!
    Bad           Good

 

Related Products

Tags: Temperature, LM35