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.

14 lines
368 B

3 years ago
3 years ago
3 years ago
3 years ago
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. typedef double(*get_temp_callback_t)(void);
  8. void T_heating_plate_init(void);
  9. void T_heating_plate_registered_cb(get_temp_callback_t cb);
  10. void T_heating_plate_start(void);
  11. void T_heating_plate_stop(void);
  12. void T_heating_plate_schedule(void);