34 lines
1.4 KiB
C
34 lines
1.4 KiB
C
/*************************** (C) COPYRIGHT 2017 YNHB ****************************
|
||
* 文件名 :display.h
|
||
* 描 述 :显示程序
|
||
* 版 本 :V1.0
|
||
* 作 者 :XuZhongPing
|
||
* 日 期 :2017/10/16
|
||
*********************************************************************************/
|
||
#ifndef __DISPLAY_H
|
||
#define __DISPLAY_H
|
||
#include "stdint.h"
|
||
|
||
void Screen_SystemInit(void);
|
||
void Screen_ShowDeviceInfo(char *ver, uint8_t type1, uint8_t type2, uint8_t type3, uint8_t type4);
|
||
void Screen_Default(void);
|
||
void Screen_DeviceDisable(void);
|
||
void Screen_Landing(void);
|
||
void Screen_Query(uint8_t auth, uint8_t mode, uint8_t *icCard, uint32_t inputAccount, uint32_t inputBalance);
|
||
void Screen_UserInfo(uint8_t auth, uint8_t mode, uint8_t *icCard, uint32_t inputAccount, uint32_t inputBalance);
|
||
void Screen_Countdown(uint8_t timerVal);
|
||
void Screen_ShowPutInInfo(uint8_t type, uint8_t leftType, uint8_t rightType, uint16_t leftVal, uint16_t rightVal);
|
||
void Screen_ShowPutInInfo2(uint16_t val1, uint16_t val2, uint16_t val3, uint16_t val4);
|
||
void Screen_ShowPutInReward(uint32_t beforeCapital, uint32_t afterCapital);
|
||
void Screen_Exit(void);
|
||
void Screen_ShowFull(void);
|
||
void Screen_Error(uint8_t type, uint8_t pre1, uint8_t pre2);
|
||
|
||
void Screen_ScaleCalibraEnter(uint8_t num);
|
||
void Screen_ScaleCalibraStart(uint8_t num);
|
||
void Screen_ScaleCalibraFinish(uint8_t num);
|
||
|
||
void DispalyTask(void);
|
||
|
||
#endif
|