Precision LM35DZ temperature sensor by CHINAEES, offering accurate temperature readings in a compact design. Operates with a linear output, making it ideal for a variety of electronic and industrial applications.
Short Features
Accurate temperature measurement from 0°C to 100°C
Linear voltage output (10mV/°C)
Operates with low power consumption
Compact and easy-to-integrate TO-92 package
Manufactured by CHINAEES for reliable performance
Specification
Model: LM35DZ (CHINAEES Version)
Temperature Range: 0°C to 100°C
Output: Linear voltage (10mV per 1°C)
Accuracy: ±0.5°C (at 25°C)
Operating Voltage: 4V to 30V DC
Current Consumption: Low power (approximately 60 µA)
Package: TO-92 (compact transistor-like form)
Applications: HVAC systems, weather stations, electronic devices, and process monitoring
🔌
Pin Connections
1 Table
Pin Connections Table 1
Board
Sensor Pin
Connection
LM35DZ
VCC/GND/OUT
4-5V (or 3.3V, still works) / GND / board analog pin
📄 File: lm35dz_temperature_sensor_-_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
8voidsetup() {
9Serial.begin(115200);
10}
11
12voidloop() {
13int raw = analogRead(LM35_PIN);
14float voltage = raw * 3.3 / 4095.0;
15float tempC = voltage * 100.0; // 10mV/C -> volts*100 = degrees C