int sensorPin = A0; // input pin for the potentiometer
int digitalValue = 0;// variable to store the value coming from the sensor
const float BETA = 3950; // should match the Beta Coefficient of the thermistor
void setup(){
Serial.begin(9600);
}
void loop(){
digitalValue = analogRead(sensorPin);// read the value from the analog channel
float celsius = 1 / (log(1 / (4095. / digitalValue - 1)) / BETA + 1.0 / 298.15) - 273.15;
Serial.print("digital value = ");
Serial.print(digitalValue); //print digital value on serial monitor
Serial.print("Temperature: ");
Serial.print(celsius);
Serial.println(" ℃");
delay(1000);
}