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.

20 lines
340 B

11 months ago
11 months ago
  1. #pragma once
  2. #include "Page_main.h"
  3. #include "Page_SettingTime.h"
  4. #include "ui.h"
  5. // extern PageProcesser Page_initialize;
  6. // typedef enum{
  7. // Page_main,
  8. // Page_SetingTime,
  9. // } page_t;
  10. typedef struct {
  11. void (*OnPageLoad)();
  12. void (*OnPageButton)(uint8_t,uint8_t);
  13. } PageProcesser;
  14. void Page_initialize(uint8_t page);