/** * 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