Thermistor AnalogRead - Therm doesn't change

I’m trying to use a simple thermistor (adafruit) with my dash pro. At this point i’m simply reading the voltage from the pin (A03), no calculations at all. But the value doesn’t change with temp changes on the thermistor. And I’ve actually unplugged the thermistor from the breadboard,and I still get the same readings from A03.
I’ll upload a pic of the wiring also.

void setup()  
{
    // connect at 115200 so we can read the GPS fast enough and echo without dropping chars
    // also spit it out
    Dash.begin();
    Serial2.begin(9600);
    SerialUSB.begin(9600);
    SerialUSB.println("Konekt GPS Test!");
    SerialCloud.begin(115200);

}
    void loop() {
  // put your main code here, to run repeatedly:
  uint32_t therm= analogRead(A03);
 
  SerialCloud.println(therm);
  delay(3000);
}

This is fixed.
Thanks

1 Like

Glad you got it working @bairdmar