lcd.h

来自「The program for BOSH 1.5.4」· C头文件 代码 · 共 30 行

H
30
字号
/* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * <joerg@FreeBSD.ORG> wrote this file.  As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return.        Joerg Wunsch * ---------------------------------------------------------------------------- * * Stdio demo, upper layer of LCD driver. * * $Id: lcd.h,v 1.1.2.1 2005/12/28 22:35:08 joerg_wunsch Exp $ *//* * Initialize LCD controller.  Performs a software reset. */void	lcd_init(void);/* * Move cursor to specified position */uint8_t lcd_locate(uint8_t y, uint8_t x);void lcd_cls();/* * Send one character to the LCD. */int	lcd_putchar(char c, FILE *stream);

⌨️ 快捷键说明

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