#include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,11,10,9,8,7,6,5,4);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("Temperature Sensor.");
}
void loop() {
// put your main code here, to run repeatedly:
const float BETA = 3950; // should match the Beta Coefficient of the thermistor
int analogValue = analogRead(0);
float celsius = 1 / (log(1 / (1023. / analogValue - 1)) / BETA + 1.0 / 298.15) - 273.15;
lcd.setCursor(0,1);
lcd.print(analogValue);
lcd.setCursor(6,1);
lcd.print(celsius);
lcd.setCursor(13,1);
lcd.print("degc.");
delay(1000);
lcd.clear();
}