Lm35 To92 Package Temperature Sensors
Rs. 61.00 Rs. 68.00
- Brand: https://www.ti.com/product/LM35
- Product Code: SEN-TEMP
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
Package/Case | TO-92-3 |
Mounting Style | Through Hole |
Sensor Type | Temperature Sensor |
Output Type | Analog Voltage |
Maximum Supply Voltage | 30 V |
Minimum Supply Voltage | 4V |
Operating Temperature Range | -55ºC to +150ºC |
Shipment Dimensions | 8 × 5 × 3 cm |
OVERVIEW:
-Calibrated directly in Degree Celsius (Centigrade)
-Linear at 10.0 mV/°C scale factor
-0.5°C accuracy guarantee-able (at a25°C)
-Suitable for remote applications
-Low cost due to wafer-level trimming
-Operates from 4 to 30 volts
-Less than 60 mA current drain
-Low self-heating, 0.08°C in still air
-Non-linearity only 0.25°C typical
PACKAGE INCLUDES:
1 PCS x Lm35 To92 Package Temperature Sensors
https://www.ti.com/product/LM35
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.electronicwings.com/arduino/lm35-interfacing-with-arduino-uno
const int lm35_pin = A1; /* LM35 O/P pin */
void setup() {
Serial.begin(9600);
}
void loop() {
int temp_adc_val;
float temp_val;
temp_adc_val = analogRead(lm35_pin); /* Read Temperature */
temp_val = (temp_adc_val * 4.88); /* Convert adc value to equivalent voltage */
temp_val = (temp_val/10); /* LM35 gives output of 10mv/°C */
Serial.print("Temperature = ");
Serial.print(temp_val);
Serial.print(" Degree Celsius\n");
delay(1000);
15 DAYS