hello i’m having difficulty trying to use the THERMISTOR library. http://www.arduinolibraries.info/libraries/thermistor
i’m sure it’s something simple and am hoping you can give me a hint.
i downloaded the .zip file, opened it and copied all the files into a subdirectoy named “THERMISTOR-1.0.2” in the …\ProgramFiles\Arduino\libraries directory.
here’s the code in my programme:
#include <thermistor.h>
thermistor temp(0);
void setup() {
Serial.begin(9600);
}
void loop() {
int sicaklik = temp.getTemp();
Serial.print("Sicaklik");
Serial.print(sicaklik);
Serialprintln(" C");
delay(1000);
}