Library for LM35 temperature sensor
Available at: http://ricardo-sequeira.com/lm35-arduino-library/
Oops! Google Chrome could not find icardo-sequeira.com ???
an r is missing : http://ricardo-sequeira.com/lm35-arduino-library/
sample snippet
#include "LM35.h"
...
LM35 sensor1(A0); // Sensor connected to pin A0
double temp = sensor1.read(); //Returns temperature based on a single reading
double temp1 = sensor1.read(5); //Returns temperature based on 5 readings (more accurate but slower)
looks good! simple and effective
thanks