⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lcd.h

📁 基于8515的lcd显示控制程序
💻 H
字号:
//
//	File Name:		lcd.h
//
//	Title:			LCD interface definitions
//
//	Description:	Interface definition file for the Hitachi HD44780U.
//
//	Creation Date:	2/2/00 11:49:37 PM
//
//	By:				A.C. Verbeck
//
//	This file is subject to the terms and conditions of the GNU General Public//	License.  See the file COPYING in the main directory of this archive//	for more details.//

#define LCD_ON				0x0E   
#define LCD_OFF				0x08
#define LCD_HOME			0x02  
#define LCD_CLEAR			0x01
#define LCD_NEW_LINE		0xC0

void	LCD_init(void);
void	LCD_clear(void);
void	LCD_reset(void);
void	LCD_command(UInt8 data);
void	LCD_putc(Char c);
void	LCD_puts(String s);

//
//	End of lcd.h
//

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -