summaryrefslogtreecommitdiffstats
path: root/src/tempmodule/temperature.h
blob: 72189bb1866fb773561200e8a6f828f36eb902f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef TEMPERATURE_INCLUDED
#define TEMPERATURE_INCLUDED

#ifdef __cplusplus
extern "C" {
#endif

int get_resistance(int vt, int ra);
int get_temperature(int res);
int get_temp_subrange(short a, short b, int res);

#ifdef __cplusplus
}
#endif

#endif /* TEMPERATURE_INCLUDED */