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

📄 lcd.h

📁 利用热释红外传感器、12C887和PIC单片机制作的智能电子时钟
💻 H
字号:
#define SPLC780D
#ifndef	_LCD_H_
#define _LCD_H_
/*
 *  LCD interface header file
 *  See lcd.c for more info
 */

/* light lcd & dark*/

void lcd_light(void);
void lcd_dark(void);

/* write a byte to the LCD in 4 bit mode */

extern void lcd_write(unsigned char);

/* Clear and home the LCD */

extern void lcd_clear(void);

/* write a string of characters to the LCD */

extern void lcd_puts(const char * s);

/* Go to the specified position */

extern void lcd_goto(unsigned char pos);

/* intialize the LCD - call before anything else */

extern void lcd_init(void);

/* write one character to the LCD */

extern void lcd_putch(char);

#endif

⌨️ 快捷键说明

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