This repository has been archived on 2024-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
justhomework/MCU/MCU_REAL _FINAL/menu.c

35 lines
363 B
C
Raw Normal View History

2022-05-19 13:07:52 +00:00
#include "menu.h"
#include "display.h"
#include "delay.h"
2022-05-25 07:12:42 +00:00
#include "draw.h"
2022-05-19 13:07:52 +00:00
Menu M_MAINMANU;
2022-05-25 07:12:42 +00:00
Menu* NOW; //<2F><><EFBFBD>ڲ˵<DAB2>ָ<EFBFBD><D6B8>
//<2F><>ʼ<EFBFBD>˵<EFBFBD>
2022-05-19 13:07:52 +00:00
void m_startup(struct _menu* this)
{
displayInit();
clear();
drawNAME();
delay(1000);
drawNUMBER();
delay(3000);
clear();
NOW=this->n;
}
Menu M_STARTUP={&M_MAINMANU,m_startup};
void menuInit()
{
NOW=&M_STARTUP;
}