Wish List 0

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 - SE-2424
  • 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
-The LM34 series devices are precision integrated-circuit temperature sensors, whose output voltage is linearly proportional to the Fahrenheit temperature.
-The LM34 device has an advantage over linear temperature sensors calibrated in degrees Kelvin, because the user is not required to subtract a large constant voltage from its output to obtain convenient Fahrenheit scaling.
-The LM34 device does not require any external calibration or trimming to provide typical accuracies of ±1/2°F at room temperature and ±1-1⁄2°F over a full −50°F to 300°F temperature range.
-Lower cost is assured by trimming and calibration at the wafer level.
-The low output impedance, linear output, and precise inherent calibration of the LM34 device makes interfacing to readout or control circuitry especially easy.
-It can be used with single power supplies or with plus and minus supplies.
-Because the LM34 device draws only 75 µA from its supply, the device has very low self-heating, less than 0.2°F in still air.
-The LM34 device is rated to operate over a −50°F to 300°F temperature range, while the LM34C is rated for a −40°F to 230°F range (0°F with improved accuracy).
-The LM34 devices are series is available packaged in hermetic TO-46 transistor packages; while the LM34C, LM34CA, and LM34D are available in the plastic TO-92 transistor package.
-The LM34D device is available in an 8-lead, surface-mount, small-outline package.
-The LM34 device is a complement to the LM35 device (Centigrade) temperature sensor.
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



//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

Write a review

Please login or register to review