float temp;
int tempPin = 1;
void setup()
{
analogReference(INTERNAL);
}
void loop()
{
temp = analogRead(tempPin);
Serial.println(temp);
Serial.println("'C.");
delay(400);
}
//NOTE:
//LM35
//Sensor at pin A1
int tempPin = 1;
void setup()
{
analogReference(INTERNAL);
}
void loop()
{
temp = analogRead(tempPin);
Serial.println(temp);
Serial.println("'C.");
delay(400);
}
//NOTE:
//LM35
//Sensor at pin A1