This library for Arduino allows you to use the LM35 Analog Temperature Sensor to measure the ambient temperature and output it in Celcius and Fahrenheit. Normally, this sensor measures temperature in Celcius but the library can also output the temperature readings in Fahrenheit. The library also compensates for the 10 mV error in the temperature readings. You can view the datasheet from http://www.ti.com/product/lm35.
A basic LM35 circuit setup looks like the image below. The pinout is:
To use it with Arduino, go the drive or folder you placed your Arduino IDE in and then place the folder in the Libraries folder.
path_to_Arduino > Libraries > place_here
The example code can be accessed by opening the Arduino IDE.
File > Examples > LM35 > TempSerialMon
I find it best to rename the folder 'LM35'.
Include the library header file in your sketch.
#include <lm35.h>
Create an object using any name (except lm35) to setup the sensor. The object should include a parameter which corressponds to the pin the sensor is connected to on the Arduino.
lm35 temps(0);
Here the object is called 'temps' is the object and the number between the first brackets is the pin number the sensor is connected to.
In the 'loop()' function, call the temperature measure function.
temps.MeasureTemp();
To get the temperature in Celcius, use TempInCelcius.
temps.TempInCelcius
To get the temperature in Fahrenheit, use TempInFahrenheit.
temps.TempInFahrenheit
Changes in 1.1
- Fixed few lines of code
- Cleanup of original code
- Updated README
These are ideas that I'm currently working on implementing in future updates. I don't know how successful I will be in completing them but I will be activiely developing it in this repo. So if anyone wants to help out, you are most welcome.
- Processing sketch to plot temperature readings in real-time or over a period
- Add interaction to plot
- Store temperature data in MySQL database
- Use database records to draw jQuery based plots on webpage
This library is released under the GNU General Public License 2.1. To read the full text visit the site.
For more information, please visit blog.verticalaxisbd.com
Follow me on twitter, LinkedIn, Google+ or Facebook.
Copyright © 2013 Riyadh Al Nur. All rights reserved.