int lm_35=A3;
void setup()
{
pinMode(lm_35, INPUT);
Serial.begin(9600);
}
void loop()
{
int temp_adc;
float temp;
temp_adc=analogRead(lm_35);
temp=temp_adc*4.88;
temp=temp/10;
Serial.println("Temperature=");
Serial.println(temp);
Serial.println("Degree Celsius");
delay(1000);
}