?? 1602六線接法練習.c
字號:
#include <iom16v.h>
#include <macros.h>
#include "1602.h"
void main(void)
{
LCD_init(); //initialize lcd1602
while(1)
{
clear(); //clear lcd1602
delay_nms(10);
LCD_write_string(0,0," ATmega 16 BOARD"); //write the string on the first
//line at the first address
LCD_write_string(1,1," dushibiao ");
delay_nms(5000);
clear();
delay_nms(10);
LCD_write_string(0,0,"Stduy follow me");
LCD_write_string(0,1,"You will secceed");
delay_nms(5000);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -