Files
CHJ/user/Interface/Display.h
2026-03-20 21:16:58 +08:00

32 lines
852 B
C
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __Display_h__
#define __Display_h__
//SLMStandard Liter per Minute是表示每分钟标准升。
//SCCMStandard Cubic Centimeter per Minute是表示每分钟标准毫升。
//SCFM standard cubic foot per minute 标准立方英尺每分钟,英制流量单位
//SCFH standard cubic foot per Hour 标准立方英尺每小时
//SLPM stard liter per minute即标准公升每分钟
// for display mode
#define NO_DIS_UPDATE 0x00
#define NORMOL_UPDATE 0x01
#define INIT_UPDATE 0x02
#define FLASH_UPDATE 0x03
#ifndef ENABLE_LCD_DISPLAY
#pragma message("[undefined] ENABLE_LCD_DISPLAY")
#endif
#if(ENABLE_LCD_DISPLAY)
extern unsigned int displayBit;
void NumericPrepForOutputAndDisplay(void);
void DisplayInit(void);
void AlarmFlashDisplay(void);
void ZeroFlowrateDisplay(void);
/**********************************/
#endif
#endif