LM35DZ Temperature Sensor

  1. Calibrated directly in Degree Celsius (Centigrade)
  2. Linear at 10.0 mV/°C scale factor
  3. 0.5°C accuracy guarantee-able (at a25°C)
  4. Suitable for remote applications
  5. Low cost due to wafer-level trimming
  6. Operates from 4 to 30 volts
  7. Less than 60 mA current drain
  8. Low self-heating, 0.08°C in still air
  9. Non-linearity only 0.25°C typical

EGP125.00

In stock

You can use the lm35dz sensor in temperature measurement applications. Thanks to its small size, you can make more precise measurements by placing it in the area you want to measure the temperature.

Features:

  1. Calibrated directly in Degree Celsius (Centigrade)
  2. Linear at 10.0 mV/°C scale factor
  3. 0.5°C accuracy guarantee-able (at a25°C)
  4. Suitable for remote applications
  5. Low cost due to wafer-level trimming
  6. Operates from 4 to 30 volts
  7. Less than 60 mA current drain
  8. Low self-heating, 0.08°C in still air
  9. Non-linearity only 0.25°C typical
  10. Low impedance output, 0.1Ωfor 1 mA load

Scope of application:

  • power supplies
  • battery management systems
  • motor driver protection circuit

Package Included:

  • 1 x LM35DZ Temperature Sensor

 

Wiring / Connections

LM35DZ Temperature Sensor

LM35DZ Temperature Sensor

Arduino Sensor
5V VCC
GND GND
A0 OUT

Arduino code

 

//https://ekostra.com
#define ADC_VREF_mV    5000.0 // in millivolt
#define ADC_RESOLUTION 1024.0
#define PIN_LM35       A0
void setup() {
  Serial.begin(9600);
}
void loop() {
  // get the ADC value from the temperature sensor
  int adcVal = analogRead(PIN_LM35);
  // convert the ADC value to voltage in millivolt
  float milliVolt = adcVal * (ADC_VREF_mV / ADC_RESOLUTION);
  // convert the voltage to the temperature in Celsius
  float tempC = milliVolt / 10;
  // convert the Celsius to Fahrenheit
  float tempF = tempC * 9 / 5 + 32;
  // print the temperature in the Serial Monitor:
  Serial.print("Temperature: ");
  Serial.print(tempC);   // print the temperature in Celsius
  Serial.print("°C");
  Serial.print("  ~  "); // separator between Celsius and Fahrenheit
  Serial.print(tempF);   // print the temperature in Fahrenheit
  Serial.println("°F");
  delay(1000);
}

 

 

Datasheet

0 reviews
0
0
0
0
0

There are no reviews yet.

Be the first to review “LM35DZ Temperature Sensor”

Your email address will not be published. Required fields are marked *

You have to be logged in to be able to add photos to your review.

Get a discount when you buy more

Specification

Case / Package:

TO-92-3

Sensor Type

Temperature Sensor

Mounting Type:

Through Hole

Output Type

Analog Voltage

Maximum Supply Voltage (V)

30

Minimum Supply Voltage (V)

4

Operating Temperature (°C)

-55 to 150

Customer Reviews

0 reviews
0
0
0
0
0

There are no reviews yet.

Be the first to review “LM35DZ Temperature Sensor”

Your email address will not be published. Required fields are marked *

You have to be logged in to be able to add photos to your review.