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

正文內(nèi)容

基于單片機(jī)的停車場計數(shù)系統(tǒng)設(shè)計-資料下載頁

2025-06-27 19:18本頁面
  

【正文】 x09, 0x19, 0x29, 0x46 }, // R { 0x00, 0x46, 0x49, 0x49, 0x49, 0x31 }, // S { 0x00, 0x01, 0x01, 0x7F, 0x01, 0x01 }, // T { 0x00, 0x3F, 0x40, 0x40, 0x40, 0x3F }, // U { 0x00, 0x1F, 0x20, 0x40, 0x20, 0x1F }, // V { 0x00, 0x3F, 0x40, 0x38, 0x40, 0x3F }, // W { 0x00, 0x63, 0x14, 0x08, 0x14, 0x63 }, // X { 0x00, 0x07, 0x08, 0x70, 0x08, 0x07 }, // Y { 0x00, 0x61, 0x51, 0x49, 0x45, 0x43 }, // Z { 0x00, 0x00, 0x7F, 0x41, 0x41, 0x00 }, // [ { 0x00, 0x55, 0x2A, 0x55, 0x2A, 0x55 }, // 55 { 0x00, 0x00, 0x41, 0x41, 0x7F, 0x00 }, // ] { 0x00, 0x04, 0x02, 0x01, 0x02, 0x04 }, // ^ { 0x00, 0x40, 0x40, 0x40, 0x40, 0x40 }, // _ { 0x00, 0x00, 0x01, 0x02, 0x04, 0x00 }, // 39。 { 0x00, 0x20, 0x54, 0x54, 0x54, 0x78 }, // a { 0x00, 0x7F, 0x48, 0x44, 0x44, 0x38 }, // b { 0x00, 0x38, 0x44, 0x44, 0x44, 0x20 }, // c { 0x00, 0x38, 0x44, 0x44, 0x48, 0x7F }, // d { 0x00, 0x38, 0x54, 0x54, 0x54, 0x18 }, // e { 0x00, 0x08, 0x7E, 0x09, 0x01, 0x02 }, // f { 0x00, 0x18, 0xA4, 0xA4, 0xA4, 0x7C }, // g { 0x00, 0x7F, 0x08, 0x04, 0x04, 0x78 }, // h { 0x00, 0x00, 0x44, 0x7D, 0x40, 0x00 }, // i { 0x00, 0x40, 0x80, 0x84, 0x7D, 0x00 }, // j { 0x00, 0x7F, 0x10, 0x28, 0x44, 0x00 }, // k { 0x00, 0x00, 0x41, 0x7F, 0x40, 0x00 }, // l { 0x00, 0x7C, 0x04, 0x18, 0x04, 0x78 }, // m { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x78 }, // n { 0x00, 0x38, 0x44, 0x44, 0x44, 0x38 }, // o { 0x00, 0xFC, 0x24, 0x24, 0x24, 0x18 }, // p { 0x00, 0x18, 0x24, 0x24, 0x18, 0xFC }, // q { 0x00, 0x7C, 0x08, 0x04, 0x04, 0x08 }, // r { 0x00, 0x48, 0x54, 0x54, 0x54, 0x20 }, // s { 0x00, 0x04, 0x3F, 0x44, 0x40, 0x20 }, // t { 0x00, 0x3C, 0x40, 0x40, 0x20, 0x7C }, // u { 0x00, 0x1C, 0x20, 0x40, 0x20, 0x1C }, // v { 0x00, 0x3C, 0x40, 0x30, 0x40, 0x3C }, // w { 0x00, 0x44, 0x28, 0x10, 0x28, 0x44 }, // x { 0x00, 0x1C, 0xA0, 0xA0, 0xA0, 0x7C }, // y { 0x00, 0x44, 0x64, 0x54, 0x4C, 0x44 }, // z { 0x14, 0x14, 0x14, 0x14, 0x14, 0x14 } // horiz lines}。void delay_1us(void) //1us延時函數(shù) { unsigned int i。 for(i=0。i1000。i++)。 } void delay_1ms(void) //1ms延時函數(shù) { unsigned int i。 for (i=0。i1140。i++)。 } void delay_nms(unsigned int n) //N ms延時函數(shù) { unsigned int i=0。 for (i=0。in。i++) delay_1ms()。 }void LCD_init(void) { // 產(chǎn)生一個讓LCD復(fù)位的低電平脈沖 LCD_RST = 0。 delay_1us()。 LCD_RST = 1。 // 關(guān)閉LCD LCD_CE = 0。 delay_1us()。 // 使能LCD LCD_CE = 1。 delay_1us()。 LCD_write_byte(0x21, 0)。 // 使用擴(kuò)展命令設(shè)置LCD模式 LCD_write_byte(0xc8, 0)。 // 設(shè)置偏置電壓 LCD_write_byte(0x06, 0)。 // 溫度校正 LCD_write_byte(0x13, 0)。 // 1:48 LCD_write_byte(0x20, 0)。 // 使用基本命令 LCD_clear()。 // 清屏 LCD_write_byte(0x0c, 0)。 // 設(shè)定顯示模式,正常顯示 // 關(guān)閉LCD 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++) LCD_write_byte(0, 1)。 }/*LCD_set_XY : 設(shè)置LCD坐標(biāo)函數(shù)輸入?yún)?shù):X :0-83 Y :0-5*/void LCD_set_XY(unsigned char X, unsigned char Y) { LCD_write_byte(0x40 | Y, 0)。 // column LCD_write_byte(0x80 | X, 0)。 // row }/*LCD_write_char : 顯示英文字符輸入?yún)?shù):c :顯示的字符;*/void LCD_write_char(unsigned char c) { unsigned char line。 c = 32。 for (line=0。 line6。 line++) LCD_write_byte(font6x8[c][line], 1)。 }/*LCD_write_english_String : 英文字符串顯示函數(shù)輸入?yún)?shù):*s :英文字符串指針; X、Y : 顯示字符串的位置,x 083 ,y 05 */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++。 } }/*LCD_write_chinese_string: 在LCD上顯示漢字輸入?yún)?shù):X、Y :顯示漢字的起始X、Y坐標(biāo); ch_with :漢字點(diǎn)陣的寬度 num :顯示漢字的個數(shù); line :漢字點(diǎn)陣數(shù)組中的起始行數(shù) row :漢字顯示的行間距測試: LCD_write_chi(0,0,12,7,0,0)。 LCD_write_chi(0,2,12,7,0,0)。 LCD_write_chi(0,4,12,7,0,0)。 */ 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)。 //設(shè)置初始位置 for (i=0。inum。) { for (n=0。 nch_with*2。 n++) //寫一個漢字 { if (n==ch_with) //寫漢字的下半部分 { 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)。 } } /*LCD_draw_map : 位圖繪制函數(shù)輸入?yún)?shù):X、Y :位圖繪制的起始X、Y坐標(biāo); *map :位圖點(diǎn)陣數(shù)據(jù); Pix_x :位圖像素(長) Pix_y :位圖像素(寬)*/void LCD_draw_bmp_pixel(unsigned char X,unsigned char Y,unsigned ch
點(diǎn)擊復(fù)制文檔內(nèi)容
物理相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1