ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors

ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensor
1. Sensor Type: LM35 analog temperature sensor
2. Output: Linear, proportional to °C
3. Package: TO-92-3
4. Calibration: Not required

Apple Shopping Event

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

80,00 EGP

8 People watching this product now!

Payment Methods:

Description

The LM35 is an integrated analog temperature sensor whose output voltage is linearly proportional to temperature in degrees Celsius, in this TO-92-3 board-mount package. Unlike sensors that require lookup tables or external calibration to convert their reading into a usable temperature, the LM35 provides accurate readings straight out of the package without trimming.

Its low output impedance and linear output make it especially easy to interface with readout circuitry or a microcontroller’s analog input, since the voltage-to-temperature relationship is simple and consistent across its range — no complex conversion math or calibration curve is required.

Features:
1. Linear analog output proportional to °C
2. No external calibration or trimming required
3. Low output impedance for easy interfacing
4. TO-92-3 board-mount package
5. Simple, direct interfacing with microcontroller analog inputs

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
LM35VCC/GND/OUT4-5V (or 3.3V, still works) / GND / board analog pin
📟
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - Arduino Uno
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - Arduino Nano
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - Arduino Mega
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - ESP32
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - ESP8266
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - STM32
ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors - Raspberry Pi Pico
📄 File: original_lm35_to-92-3_board_mount_temperature_sensors_-_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: original_lm35_to-92-3_board_mount_temperature_sensors_-_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: original_lm35_to-92-3_board_mount_temperature_sensors_-_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: original_lm35_to-92-3_board_mount_temperature_sensors_-_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: original_lm35_to-92-3_board_mount_temperature_sensors_-_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: original_lm35_to-92-3_board_mount_temperature_sensors_-_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: original_lm35_to-92-3_board_mount_temperature_sensors_-_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.

نظرة عامة ومواصفات المنتج — بالعربية

ORIGINAL LM35 TO-92-3 Board Mount Temperature Sensors متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 80,00 EGP. كود المنتج لدينا: EK866. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Sensor Type: LM35 analog temperature sensor
  • Output Characteristic: Linear, proportional to °C
  • Package Type: TO-92-3
  • Calibration Required: No (factory calibrated)
  • Output Impedance: Low
  • الوزن: 1 g

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Sensor TypeLM35 analog temperature sensor
Output CharacteristicLinear, proportional to °C
Package TypeTO-92-3
Calibration RequiredNo (factory calibrated)
Output ImpedanceLow

Customer Reviews