precision-converters-firmware
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
ptxxx.h
Go to the documentation of this file.
1
18#ifndef RTD_PTXXX_H_
19#define RTD_PTXXX_H_
20
21#include <math.h>
22
23#include "rtd.h"
24
25class PT100 : public RTD
26{
27public:
28 float convertResistanceToTemperature(float resistance);
29};
30
31class PT1000 : public RTD
32{
33public:
34 float convertResistanceToTemperature(float resistance);
35};
36
37#endif /* RTD_PTXXX_H_ */
Definition ptxxx.h:32
float convertResistanceToTemperature(float resistance)
converts a resistance to a temperature
Definition ptxxx.h:26
float convertResistanceToTemperature(float resistance)
converts a resistance to a temperature
Definition rtd.h:22