Thermistor
Dependents: Nucleo_UDS_controller_Alberto_version
Thermistor.h
- Committer:
- macht
- Date:
- 2014-09-07
- Revision:
- 0:d4198719a504
File content as of revision 0:d4198719a504:
#ifndef THERMISTOR_H #define THERMISTOR_H #include "mbed.h" #include "math.h" class Thermistor { public: Thermistor(float T0,float R0,float B); float trans_R2T(float R); //transfer resistance to temperature(degrees) private: float R0_; //basic resisitance of thremister at basic temperature float T0_; //basic temperature[°C] float K0_; //basic temperature[K] float B_; //B constant }; #endif /* float R2T(float input){ float K0 = T0+273.0; float K = (B*K0)/(K0*log(input/R0)+B); float temp = K-273.0; return temp; }*/