blob: ebe8f8b5d8bfd39f463e6229c33046038e7b889a (
plain)
1
2
3
4
5
6
7
8
9
|
#define TEMP_V25 0.760
#define TEMP_AVG_SLOPE 0.0025
#define TEMP_V_BOARD 3.0
// Conpute the current temperature
void temperature_update();
// Return the current temperature
float temperature_get();
|