📄 disp.h
字号:
// --------------------------------------
// - Time PAUSE WAIT [0..255] x0.1s -
// --------------------------------------
void PAUSE(uchar WAIT);
// --------------------------------------
// - Inicialization routine -
// --------------------------------------
void DISP_INIT(void);
// --------------------------------------
// - Display ON -
// --------------------------------------
void DISP_ON(void);
// --------------------------------------
// - Display OFF -
// --------------------------------------
void DISP_OFF(void);
// --------------------------------------
// - Display Clear -
// --------------------------------------
void DISP_CLEAR(void);
// --------------------------------------
// - Routine for writing text in ASCII code
// - *TextArray ... Pointer to Array with text
// - TextLen ..... Length text
// - Height ...... Height text <0..1>
// - PosRow ...... Position in ROW <0..7>
// - PosCol ...... Position in COLUMN <0..63>
// --------------------------------------
void DISP_TEXT(uchar *TextArray, uchar TextLen, uchar Height, uchar PosRow, uchar PosCol);
// --------------------------------------
// - Routine for paint commpress Image
// - ImageArray ... Pointer to Image table
// - PosRow ....... Position in ROW <0..7>
// - PosColL ...... Position in COLUMN <0..63>
// --------------------------------------
void DISP_ICON(uchar *ImageArray,uchar PosRow,uchar PosCol);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -