int lm_35=A3;
void setup() {
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 clesius");
delay(1000);
}