?? lcd.h
字號(hào):
/*
* LCD interface header file
* See lcd.c for more info
*/
sbit LCD_RS = P1^6;
sbit LCD_EN = P1^7;
/* write a byte to the LCD in 4 bit mode */
void lcd_write(unsigned char) reentrant;
/* Clear and home the LCD */
void lcd_clear(void) reentrant;
/* write a string of characters to the LCD */
void lcd_puts(char * s) reentrant;
/* write a character to the LCD */
void lcd_putch(char c) reentrant; //字符為16進(jìn)制數(shù)
/* Go to the specified position */
void lcd_goto(unsigned char pos) reentrant;
/* intialize the LCD - call before anything else */
void lcd_init(void) reentrant;
/* Set the cursor position */
#define lcd_cursor(x) lcd_write(((x)&0x7F)|0x80)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -