Lm34 Precision Fahrenheit Temperature Sensors For Arduino Raspberry Pi Robotics
Rs. 77.00 Rs. 93.00
- Brand: https://www.ti.com/product/LM34
- 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: | |
Local sensor accuracy (Max) (+/- C) | 0.556 |
Operating temperature range (C) | -40 to 110, -45.6 to 148.9, 0 to 100 |
Supply voltage (Min) (V) | 5 |
Supply voltage (Max) (V) | 30 |
Supply current (Max) (uA) | 160 |
Interface type | Analog output |
Sensor gain (mV/Deg C) | 10 |
Rating | Catalog |
OVERVIEW:
-Calibrated Directly in Degrees Fahrenheit
-Linear 10.0 mV/°F Scale Factor
-1.0°F Accuracy Assured (at 77°F)
-Rated for Full −50° to 300°F Range
-Suitable for Remote Applications
-Low Cost Due to Wafer-Level Trimming
-Operates From 5 to 30 Volts
-Less Than 90-µA Current Drain
-Low Self-Heating, 0.18°F in Still Air
-Nonlinearity Only ±0.5°F Typical
-Low-Impedance Output, 0.4 Ω for 1-mA Load
PACKAGE INCLUDES:
1 PCS x Lm34 Precision Fahrenheit Temperature Sensors For Arduino Raspberry Pi
https://www.ti.com/product/LM34
//SOURCE CODE TAKEN FROM BELOW LINK
//https://forum.arduino.cc/index.php?topic=256660.0
//Inializes or Defines what Pin is output for LM34 Temp Sensor
int outputpin=0;
//This sets the Ground pin to LOW and the Input Voltage Pin to HIGH
void setup()
{
Serial.begin(9600);
}
//Main Loop
void loop()
{
int rawvoltage=analogRead(outputpin);
float millivolts=(rawvoltage/1024.0)*5000;
float fahrenheit=millivolts/10;
Serial.print(fahrenheit);
Serial.print("degrees Fahrenheit,");
Serial.print((fahrenheit -32)*5/9);
Serial.println("degrees Celsius");
delay(20000);
}
15 DAYS