2025-08-05 06:25:39 +00:00
|
|
|
/* USER CODE END Header */
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
|
|
#ifndef __HEAT_H__
|
|
|
|
#define __HEAT_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
|
|
#include "main.h"
|
|
|
|
|
2025-08-06 04:59:57 +00:00
|
|
|
//void start_heat(void);
|
2025-08-05 06:25:39 +00:00
|
|
|
void stop_heat(void);
|
2025-08-06 04:59:57 +00:00
|
|
|
void temp_ctrl(void);
|
2025-08-05 06:25:39 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* __HEAT_H__ */
|
|
|
|
|