lcd.h
来自「ucLinux ported to STR71.」· C头文件 代码 · 共 28 行
H
28 行
/********************************************************************************
* File Name : lcd.h
* Author : SJ
* Date First Issued : 14/07/2007
* Description :
*******************************************************************************/
#ifndef __LCD_H
#define __LCD_H
#include "71x_map.h"
static void LCD_Data ( u8 data );
void LCD_Delay(u16 time);
void LCD_Init(void);
void LCD_SetCursorPosition(u8 col, u8 row);
void LCD_UnderlineCursorOff(void);
void LCD_DisplayCharacter (u8 c, u8 col, u8 row);
void LCD_String(char *String, u8 col, u8 row);
void LCDInit(void);
#endif // __LCD_H
/*******************************************************************************/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?