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
20 lines
340 B
#pragma once
|
|
|
|
|
|
#include "Page_main.h"
|
|
#include "Page_SettingTime.h"
|
|
#include "ui.h"
|
|
|
|
// extern PageProcesser Page_initialize;
|
|
|
|
// typedef enum{
|
|
// Page_main,
|
|
// Page_SetingTime,
|
|
// } page_t;
|
|
|
|
typedef struct {
|
|
void (*OnPageLoad)();
|
|
void (*OnPageButton)(uint8_t,uint8_t);
|
|
} PageProcesser;
|
|
|
|
void Page_initialize(uint8_t page);
|