How can I read the temperature using an NTC thermistor with an STM32F103C8T6 board??
Electrical – How to read temperature with STM32F103C8T6?
boardprogrammingstm32temperaturethermistor
Related Question
- Electronic – How to measure temperature using a NTC thermistor
- Electronic – How to place thermistor for reading temperature in NiHM single AA cell charger
- Electrical – How to measure a temperature with a NTC thermistor and an Op Amp
- Electronic – arduino – Calculating NTC temperature on Controllino Maxi Automation yields incorrect temperature
Best Answer
Use a pullup resistor with the thermistor to make a voltage divider. The resulting voltage goes to an ADC input on the processor.
Write some code that reads the ADC value and calculates the equivalent temperature. Don't forget that a thermistor's response is nonlinear.