freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

諾基亞5110液晶顯示器應用課程設計-資料下載頁

2025-05-11 16:31本頁面

【導讀】諾基亞5110液晶顯示器應用。1)設計諾基亞5110液晶顯示器應用的總體設計方案;晶顯示硬件系統(tǒng);3)系統(tǒng)程序編制與調試;5)撰寫課程設計論文;6)完成課程設計論文答辯。編程使得在LCD顯示器上顯示字符,如多行滾動顯示:?!半姎夤こ虒W院”。等字符,還可以顯示別的文字;2)單片機課程設計題目的硬件電路、程序由學生自行設計完成。3)液晶顯示器上要顯示出設計人的班級,組長的學號等信息。第1-2天查閱資料,方案比較、設計與論證,液晶顯示器件[1]是一種高新技術的基礎元器件。定條件下轉換為可視信號而制成的顯示器。液晶顯示器具有低電壓、低功。耗的特點,與CMOS集成電路相匹配.電池作為電源,適合于便攜式顯示。量大的特點,主要應用于各種儀器儀表、手機、PDA、筆記本電腦等。不發(fā)光,不刺激眼睛,不易疲勞等優(yōu)點。因而,液晶顯示應用幾乎覆蓋所有顯示應用領域。是它的一個極為重要的環(huán)節(jié)。習與應用脫節(jié)的局面。都會令課堂教學的效果大打折扣。

  

【正文】 x7C, 0x08, 0x04, 0x04, 0x78 }, { 0x00, 0x38, 0x44, 0x44, 0x44, 0x38 }, { 0x00, 0xFC, 0x24, 0x24, 0x24, 0x18 }, { 0x00, 0x18, 0x24, 0x24, 0x18, 0xFC }, { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x08 }, { 0x00, 0x48, 0x54, 0x54, 0x54, 0x20 }, { 0x00, 0x04, 0x3F, 0x44, 0x40, 0x20 }, { 0x00, 0x3C, 0x40, 0x40, 0x20, 0x7C }, { 0x00, 0x1C, 0x20, 0x40, 0x20, 0x1C }, { 0x00, 0x3C, 0x40, 0x30, 0x40, 0x3C }, { 0x00, 0x44, 0x28, 0x10, 0x28, 0x44 }, { 0x00, 0x1C, 0xA0, 0xA0, 0xA0, 0x7C }, { 0x00, 0x44, 0x64, 0x54, 0x4C, 0x44 }, { 0x14, 0x14, 0x14, 0x14, 0x14, 0x14 }, }。 /////////////////////////////////////////////////// void main(void) { LCD_init()。 LCD_clear()。 while(1) { LCD_write_english_string(0,0,NOKIA 5110 LCD)。 附錄 16 LCD_write_chinese_string(6,1,12,6,0,0)。 LCD_write_chinese_string(12,3,12,3,6,12)。 LCD_write_english_string(6,5,:772460432)。 } } ///////////////////////////////////////////////////////////// void delay_1us(void) { unsigned int i。 for(i=0。i1000。i++)。 } ////////////////////////////////////////////////////// void LCD_init(void) { LCD_RST = 0。 delay_1us()。 LCD_RST = 1。 LCD_CE = 0。 delay_1us()。 LCD_CE = 1。 delay_1us()。 LCD_write_byte(0x21, 0)。 LCD_write_byte(0xc8, 0)。 LCD_write_byte(0x06, 0)。 LCD_write_byte(0x13, 0)。 LCD_write_byte(0x20, 0)。 LCD_clear()。 LCD_write_byte(0x0c, 0)。 LCD_CE = 0。 } ////////////////////////////////////////////////// void LCD_clear(void) { unsigned int i。 LCD_write_byte(0x0c, 0)。 LCD_write_byte(0x80, 0)。 for (i=0。 i504。 i++) 附錄 17 LCD_write_byte(0, 1)。 } /////////////////////////////////////// void LCD_set_XY(unsigned char X, unsigned char Y) { LCD_write_byte(0x40 | Y, 0)。 LCD_write_byte(0x80 | X, 0)。 } //////////////////////////////////////// void LCD_write_char(unsigned char c) { unsigned char line。 c = 32。 for (line=0。 line6。 line++) LCD_write_byte(font6x8[c][line], 1)。 } ///////////////////////////////////////////////// void LCD_write_english_string(unsigned char X,unsigned char Y,char *s) { LCD_set_XY(X,Y)。 while (*s) { LCD_write_char(*s)。 s++。 } } ///////////////////////////////////////////////////////// void LCD_write_chinese_string(unsigned char X, unsigned char Y, unsigned char ch_with,unsigned char num, unsigned char line,unsigned char row) { unsigned char i,n。 LCD_set_XY(X,Y)。 for (i=0。inum。) { for (n=0。 nch_with*2。 n++) { if (n==ch_with) 附錄 18 { if (i==0) LCD_set_XY(X,Y+1)。 else LCD_set_XY((X+(ch_with+row)*i),Y+1)。 } LCD_write_byte(write_chinese[line+i][n],1)。 } i++。 LCD_set_XY((X+(ch_with+row)*i),Y)。 } } ////////////////////////////////////////////////////////////////// void LCD_write_byte(unsigned char dat, unsigned char mand) { unsigned char i。 LCD_CE = 0。 if (mand == 0) LCD_DC = 0。 else LCD_DC = 1。 for(i=0。i8。i++) { if(datamp。0x80) SDIN = 1。 else SDIN = 0。 SCLK = 0。 dat = dat 1。 SCLK = 1。 } LCD_CE = 1。 }
點擊復制文檔內容
畢業(yè)設計相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1