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

📄 lcd_out.h

📁 Low End Microchip PICs C函数
💻 H
字号:
// lcd_out.h
// header file for lcd_out.c
//
// copyright, Peter H. Anderson, Baltimore, MD, Dec, '00

void delay_10us(byte t);   // max of 255 * 10 us
void delay_ms(long t);   // delays t millisecs - max of 65,535 ms

void lcd_char(byte c);
void lcd_data_nibble(byte c);
void lcd_cmd_byte(byte c);
void lcd_cmd_nibble(byte c);

void lcd_shift_out(byte x);

void lcd_init(void);
void lcd_clr(void);
void lcd_clr_line(byte line);
void lcd_cursor_pos(byte line, byte pos);

void lcd_str(char *s);
void lcd_dec_byte(byte val, byte digits);
void lcd_hex_byte(byte val);
char num_to_char(byte val);

⌨️ 快捷键说明

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