You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
407 B
19 lines
407 B
/**
|
|
* TODO file description
|
|
*/
|
|
|
|
#ifndef BLUEPILLTROUBA_APP_ANALOG_H
|
|
#define BLUEPILLTROUBA_APP_ANALOG_H
|
|
|
|
void app_analog_init();
|
|
|
|
/**
|
|
* Get current oven temp.
|
|
*
|
|
* A slow float calculation is done here - call only when needed, at a roughly constant rate (e.g. 1s) to make smoothing work properly.
|
|
*
|
|
* @return the value in celsius
|
|
*/
|
|
float app_analog_get_temp();
|
|
|
|
#endif //BLUEPILLTROUBA_APP_ANALOG_H
|
|
|