?? lcd.h
字號:
/***********************************************************
* Program: LCD driver header
* target mcu: 8515
* WEB: WWW.MCU123.COM
************************************************************/
// LCD is connected on PORTA in 4bit mode
#include <avr/io.h>
#include <stdio.h>
#include <stdarg.h> // just for printf
typedef unsigned char byte;
void lcd_delay(unsigned int p);
void toggle_E();
void lcd_init(void);
void lcd_cls();
void lcd_home();
void lcd_control(byte disonoff, byte curonoff, byte curblink);
void lcd_goto(byte mesto);
void lcd_putch(byte data);
void lcd_putstr(byte *data);
void printbin(byte x, byte ch0, byte ch1);
void printhex(byte i);
void printdec(unsigned int x, unsigned char n, unsigned char fillch);
void print10(unsigned long x);
int printf(const char *format, ...);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -