lcd_functions.h
来自「The collection of AVR source code in C.」· C头文件 代码 · 共 20 行
H
20 行
//
// Author(s)...: ATMEL Norway
//
// Target(s)...: ATmega169
//
// mt - used for debugging only - may not work
#include <avr/pgmspace.h>
//Functions
// mt void LCD_puts_f(char __flash *pFlashStr, char scrollmode);
void LCD_puts_f(const char *pFlashStr, char scrollmode);
void LCD_puts(char *pStr, char scrollmode);
void LCD_UpdateRequired(char update, char scrollmode);
//void LCD_putc(char digit, char character);
void LCD_putc(uint8_t digit, char character);
void LCD_Clear(void);
void LCD_Colon(char show);
void LCD_FlashReset(void);
void SetContrast(char input);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?