Original LM35 Temperature Sensor - shown as a black, three-pin electronic component with a diagram labeling pins 1, 2, and 3 with their respective functions.
Original LM35 Temperature Sensor - shown as a black, semi-cylindrical electronic component with three downward-extending metal pins labeled Supply, Output, and Ground.
Original LM35 Temperature Sensor - shown as a black, cylindrical electronic component with three metal pins labeled with supply voltage, output, and ground.
Original LM35 Temperature Sensor - shown in a diagram with three pins labeled Vcc (5V), Analog Out (10mV/°C), and Ground.
Original LM35 Temperature Sensor - shown as a black, three-pin electronic component with a diagram labeling pins 1, 2, and 3 with their respective functions.
Original LM35 Temperature Sensor - shown as a black, semi-cylindrical electronic component with three downward-extending metal pins labeled Supply, Output, and Ground.
Original LM35 Temperature Sensor - shown as a black, cylindrical electronic component with three metal pins labeled with supply voltage, output, and ground.
Original LM35 Temperature Sensor - shown in a diagram with three pins labeled Vcc (5V), Analog Out (10mV/°C), and Ground.

Original LM35 Temperature Sensor

Sale price Rs 260
SKU: B536,IMP500,Th250,A
Log in to use Wishlist
Add to Compare

Frequently Bought Together

Customers building this project usually buy these together.

Original LM35 Temperature Sensor - shown as a black, three-pin electronic component with a diagram labeling pins 1, 2, and 3 with their respective functions.
+
Pulse Sensor Pulse Heart Rate Sensor Arduino Heartbeat Sensor - a close-up of the circular heart-shaped black and white PCB held by fingers with three attached red, black, and purple wires.
+
Temperature Sensor DS18B20 - shown as a black, three-pin electronic component with the text "DALLAS 18B20 0442B7 106AC" printed on its top surface.
+
SPO2 Pulse Oximeter Heart Rate Sensor Module MAX30100 Ppg Sensor - shown as a green circuit board with a sensor and a separate seven-pin male header connector.
SPO2 Pulse Oximeter Heart Rate Sensor Module MAX30100 Ppg Sensor - shown as a green circuit board with a sensor and a separate seven-pin male header connector.
This item: Original LM35 Temperature Sensor -
Sale price Rs 260
Pulse Sensor Pulse Heart Rate Sensor Arduino Heartbeat Sensor - a close-up of the circular heart-shaped black and white PCB held by fingers with three attached red, black, and purple wires.
Temperature Sensor DS18B20 - shown as a black, three-pin electronic component with the text "DALLAS 18B20 0442B7 106AC" printed on its top surface.
Temperature Sensor DS18B20 -
Sale price Rs 260
SPO2 Pulse Oximeter Heart Rate Sensor Module MAX30100 Ppg Sensor - shown as a green circuit board with a sensor and a separate seven-pin male header connector.
Price for all:
Sale total price Rs 1,340

Pickup available at Digilog Electronics

Usually ready in 2 hours

Original LM35 Temperature Sensor - shown as a black, three-pin electronic component with a diagram labeling pins 1, 2, and 3 with their respective functions.

Original LM35 Temperature Sensor

  • Digilog Electronics

    Pickup available, usually ready in 2 hours

    🏢 Digilog Electronics 13th the RegalStreet,
    Back side of KFC, Near Abubakar Masjid Mall Road
    Lahore
    Pakistan

    +923124002221

    Check this on google map

Original LM35 Temperature Sensor is an integrated analogue temperature sensor whose electrical output is proportional to Degree Centigrade. LM35 Temperature Sensor does not require any external calibration or trimming to provide typical accuracies. The LM35’s low output impedance, a linear output, and precise inherent calibration make interfacing to readout or control circuitry especially easy.
              The main advantage of LM35 is that it is linear i.e. 10mv/°C which means for every degree rise in temperature the output of LM35 will rise by 10mv. So if the output of LM35 is 220mv/0.22V the temperature will be 22°C. So if the room temperature is 32°C then the output of LM35 will be 320mv i.e. 0.32V. 
              As such no extra components required to interface LM35 to ADC as the output of LM35 is linear with 10mv/degree scale. It can be directly interfaced to any 10 or 12 bit ADC. But if you are using an 8-bit ADC like ADC0808 or ADC0804 an amplifier section will be needed if you require to measure 1°C change.
LM35 can also be directly connected to Arduino. The output of LM35 temperature can also be given to comparator circuit and can be used for over-temperature indication or by using a simple relay can be used as a temperature controller.

Features of Original LM35 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. Rated for full -55°C to a 150°C range
  5. Suitable for remote applications
  6. Low cost due to wafer-level trimming
  7. Operates from 4 to 30 volts
  8. Less than 60 mA current drain
  9. Low self-heating, 0.08°C instil an air
  10. Non-linearity only 0.25°C typical
  11. Low impedance output, 0.1Ωfor 1 mA load 

Specifications of Original LM35 Temperature Sensor:

  1. Local sensor accuracy (Max) (+/- C): 0.5
  2. Operating temperature range (C): -40 to 110,-55 to 150,0 to 100,0 to 70
  3. Supply voltage (Min) (V): 4
  4. Supply voltage (Max) (V): 30
  5. Supply current (Max) (uA): 14
  6. Sensor gain (mV/Deg C): 10
  7. Rating: Catalog
  8. Features: UL Recognized
  9. Interface: Analog Output

Package Includes:

1 x Original LM35 Temperature Sensor



Code for orignale LM35:

// Define the pin where the LM35 is connected
const int sensorPin = A0;  // Analog pin connected to LM35
float voltage;             // Variable to store voltage
float temperature;         // Variable to store temperature in Celsius

void setup() {
  Serial.begin(9600); // Initialize serial communication
}

void loop() {
  // Read the analog value from the LM35
  int sensorValue = analogRead(sensorPin);

  // Convert the analog value to voltage
  voltage = sensorValue * (5.0 / 1023.0); // Assuming a 5V system

  // Convert voltage to temperature (LM35 gives 10mV per degree Celsius)
  temperature = voltage * 100.0;

  // Print the results to the Serial Monitor
  Serial.print("Voltage: ");
  Serial.print(voltage);
  Serial.print(" V | Temperature: ");
  Serial.print(temperature);
  Serial.println(" °C");

  // Wait for a second before the next reading
  delay(1000);
}

aeProduct.getSubject()