precision-converters-firmware
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 
25 class PT100 : public RTD
26 {
27 public:
28  float convertResistanceToTemperature(float resistance);
29 };
30 
31 class PT1000 : public RTD
32 {
33 public:
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