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.

12 lines
305 B

3 years ago
3 years ago
3 years ago
  1. #pragma once
  2. #include <stdbool.h>
  3. typedef struct
  4. {
  5. bool heating_plate_preheat_finished_flag;
  6. } heating_plate_structer_t;
  7. void T_heating_plate_init(void);
  8. void T_heating_plate_registered_cb(void);
  9. void T_heating_plate_start(void);
  10. void T_heating_plate_stop(void);
  11. void T_heating_plate_schedule(void);