The Thermistor class provides easy access to a thermistor device and supports onboard three-point calibration using the Steinhart-Hart equation.
Thermistor requires the SafetyPin library, which may be found here.
A thermistor is a passive two-terminal component with a resistance strongly dependent on temperature. It is easy to measure a thermistor's resistance by constructing a voltage divider using a known resistance and measuring the resulting potential:
Although the resistance varies with temperature, getting from the observed resistance to the actual temperature isn't trivial. Most thermistors are highly nonlinear, so naive two-point calibration only works over small intervals. Fortunately, the behavior is well described by the Steinhart-Hart equation. This empirically-derived relation includes three coefficients, and calibration amounts to solving for their values given three observed temperatures and resistances.
The Thermistor library makes this calibration process relatively easy. When a new Thermistor object is created it is uncalibrated and will return incorrect temperature values. Before using it, you should call calibrate(t1, v1, t2, v2, t3, v3) , with three observed temperature (°F) and voltage ([0..1023]) values, well separated and spanning at least the temperature range of interest. Thermistor will internally calculate the corresponding coefficients and use them for subsequent calls to temperature(). If you want to store the calibration data across restarts, just store the inputs and call calibrate() in your setup method.
Synopsis:
Thermistor(AnalogIn& pin, unsigned int Rb);Constructs a thermistor object.
AnalogIn& pinanalog input pin attached to GND via a resistor of value Rb ohms and to Vcc via the thermistor.unsigned int Rbvalue in ohms of the balance resistor
temperature_t temperature();Returns the current temperature in °F.
float raw();Returns a raw analog reading from the temperature sensor [0 .. 1023], averaged to reduce noise but unscaled.
void calibrate( temperature_t T1, const float& V1,
temperature_t T2, const float& V2,
temperature_t T3, const float& V3);Calibrates the probe given three temperatures in Fahrenheit and three corresponding analog sensor readings in the range [0..1023].
temperature_t T1, T2, T3temperature values for the three sample pointsfloat V1, V2, V3corresponding sensor reading values for the three samples
