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.

23 lines
482 B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. /**
  2. * @file heating_plate.c
  3. * @author Finny (tianjialong0106@163.com)
  4. * @brief
  5. * @version 0.1
  6. * @date 2022-09-26
  7. *
  8. * @copyright Copyright (c) 2022
  9. *
  10. */
  11. #include "heating_plate.h"
  12. static get_temp_callback_t get_temp_cb_s;
  13. void T_heating_plate_init(void) {}
  14. void T_heating_plate_registered_cb(get_temp_callback_t cb) { get_temp_cb_s = cb; }
  15. void T_heating_plate_start(void) {}
  16. void T_heating_plate_stop(void) {}
  17. void T_heating_plate_schedule(void) { get_temp_cb_s(); }