LM35DZ Temperature Sensor Chinese

  1. 🎯 Calibrated in Celsius (°C)
  2. 📏 10.0 mV/°C linear output
  3. ✅ ±0.5°C accuracy at 25°C
  4. 🔋 Operating voltage: 4V–30V
  5. 🔌 Ultra-low current: <60 µA
  6. 🔥 Low self-heating: 0.08°C
  7. 🧪 Minimal non-linearity: 0.25°C
  8. 📤 Low output impedance: 0.1Ω

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

75,00 EGP

7 People watching this product now!

Payment Methods:

Description

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:

 

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
LM35DZVCC/GND/OUT4-5V (or 3.3V, still works) / GND / board analog pin
📟
LM35DZ Temperature Sensor Chinese
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
LM35DZ Temperature Sensor Chinese - Arduino Uno
LM35DZ Temperature Sensor Chinese - Arduino Nano
LM35DZ Temperature Sensor Chinese - Arduino Mega
LM35DZ Temperature Sensor Chinese - ESP32
LM35DZ Temperature Sensor Chinese - ESP8266
LM35DZ Temperature Sensor Chinese - STM32
LM35DZ Temperature Sensor Chinese - Raspberry Pi Pico
📄 File: lm35dz_temperature_sensor_chinese_-_arduino_uno.inoArduino Uno
518 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on Arduino Uno. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 5.0 / 1023.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
📄 File: lm35dz_temperature_sensor_chinese_-_arduino_nano.inoArduino Nano
519 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on Arduino Nano. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 5.0 / 1023.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
📄 File: lm35dz_temperature_sensor_chinese_-_arduino_mega.inoArduino Mega
519 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on Arduino Mega. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 5.0 / 1023.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
📄 File: lm35dz_temperature_sensor_chinese_-_esp32.inoESP32
512 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin 34 on ESP32. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN 34
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 3.3 / 4095.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
📄 File: lm35dz_temperature_sensor_chinese_-_esp8266.inoESP8266
514 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin A0 on ESP8266. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN A0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 3.3 / 1023.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
📄 File: lm35dz_temperature_sensor_chinese_-_stm32.inoSTM32
514 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin PA0 on STM32. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN PA0
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 3.3 / 4095.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
📄 File: lm35dz_temperature_sensor_chinese_-_raspberry_pi_pico.inoRaspberry Pi Pico
524 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Analog pin 26 on Raspberry Pi Pico. LM35 outputs 10mV per degree C, referenced to 0V, so it also happens to fit 3.3V boards fine (max ~150C = 1.5V).
6#define LM35_PIN 26
7
8void setup() {
9 Serial.begin(115200);
10}
11
12void loop() {
13 int raw = analogRead(LM35_PIN);
14 float voltage = raw * 3.3 / 4095.0;
15 float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C
16
17 Serial.print("Temperature: "); Serial.print(tempC); Serial.println(" C");
18
19 delay(500);
20}
Analog precision temperature IC, 10mV/deg C.

Specification

Specification

WeightWeight6 g
Dimensions3 × 2 × 1 cm
case-packageTO-92-3
sensor-typeTemperature Sensor
mounting-typeThrough Hole
output-typeAnalog Voltage
maximum-supply-voltage-v30
minimum-supply-voltage-v4
operating-temperature-c-55 to 150

Customer Reviews