How do you meassure the temperature with a NTC? A picture of the arduino and NTC is attached, my code is down here. I just can't find the problem, the Seial monitor only gives letters and symbols.
// analoge pins
int TempPin = A0;
int Temp = 0;
void setup () {
pinMode(TempPin, INPUT);
Serial.begin(38400);
}
void loop() {
Temp = analogRead(TempPin);
//Temp = (0.1035 * TempWaarde) - 29.995;
// Serial.print("TempPin");
Serial.print("Temp");
delay(1000);
}
Sorry for the grammar, English isn't my native language.