點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)單片機(jī)課程設(shè)計(jì)報(bào)告1_第1頁(yè)
點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)單片機(jī)課程設(shè)計(jì)報(bào)告1_第2頁(yè)
點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)單片機(jī)課程設(shè)計(jì)報(bào)告1_第3頁(yè)
點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)單片機(jī)課程設(shè)計(jì)報(bào)告1_第4頁(yè)
點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)單片機(jī)課程設(shè)計(jì)報(bào)告1_第5頁(yè)
已閱讀5頁(yè),還剩24頁(yè)未讀 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、j i a n g s u u n i v e r s i t y單片機(jī)原理及應(yīng)用課程設(shè)計(jì)點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)點(diǎn)陣式液晶顯示屏的顯示程序設(shè)計(jì)一、設(shè)計(jì)目的1熟練掌握c51系統(tǒng)仿真開(kāi)發(fā)系統(tǒng)的應(yīng)用。2加強(qiáng)單片機(jī)的綜合運(yùn)用能力、提高單片機(jī)的軟件編程和調(diào)試能力,為以后的學(xué)習(xí)和開(kāi)發(fā)工作打下良好基礎(chǔ)。3掌握的液晶的工作原理以及應(yīng)用設(shè)計(jì)。4掌握小系統(tǒng)開(kāi)發(fā)設(shè)計(jì)的流程以及設(shè)計(jì)思路。二、設(shè)計(jì)方案 實(shí)驗(yàn)要求:1)從下到上左到右滾動(dòng)顯示:自己設(shè)計(jì)的圖片 2)能進(jìn)行正常的模擬量采樣值顯示(溫度、壓力、電位) 。3)未按鍵時(shí)菜單要可以停下來(lái) 設(shè)計(jì)思路:由于實(shí)驗(yàn)指導(dǎo)書(shū)中做過(guò)液晶顯示和模數(shù)轉(zhuǎn)換得實(shí)驗(yàn),根據(jù)兩個(gè)實(shí)驗(yàn)的功

2、能實(shí)現(xiàn)和流程原理進(jìn)行設(shè)計(jì)將程序分成四個(gè)模塊:主函數(shù)模塊main.c模數(shù)轉(zhuǎn)換模塊adc.c液晶顯示模塊ks0108.c按鍵調(diào)試模塊test7179.c其中讓主函數(shù)模塊做一些初始化和函數(shù)調(diào)用工作,模數(shù)轉(zhuǎn)換模塊主要是將溫度,壓力,點(diǎn)位的值轉(zhuǎn)化為數(shù)字量供液晶顯示用,液晶顯示模塊得到模數(shù)轉(zhuǎn)換模塊傳遞過(guò)來(lái)的數(shù)字量顯示到液晶面板上,按鍵調(diào)試模塊是輸入按鍵顯示溫度,電壓,壓力等。程序流程圖:1系統(tǒng)主流程圖如下開(kāi)始主函數(shù)模塊顯示模塊模數(shù)轉(zhuǎn)換模塊2主函數(shù)流程圖開(kāi)始使能比較器1開(kāi)中斷初始化系統(tǒng)時(shí)鐘鐘初始化定時(shí)器0初始化io端口初始化spi0使能片內(nèi)參考電壓使能dac3 顯示模塊流程圖開(kāi)始初始化lcd滾屏顯示江蘇大學(xué)

3、計(jì)算機(jī)學(xué)院讀取數(shù)字量并顯示調(diào)用模數(shù)轉(zhuǎn)換得到值顯示課程設(shè)計(jì)題目、班級(jí)、姓名健值是否1.2.34 模數(shù)轉(zhuǎn)換模塊流程圖開(kāi)始讀取no和模擬量返回溫度返回點(diǎn)位結(jié)束返回壓力no=2?no=3?no=1? 主要的源程序及注釋主函數(shù):#include c8051f020.h #include void delay1us(unsigned char us) while (us) _nop_(); _nop_(); _nop_(); _nop_(); _nop_(); -us; void sysclk_init (void) int i; / delay counter oscxcn = 0x67; / star

4、t external oscillator with / 18.432mhz crystal for (i=0; i 256; i+) ; / wait for osc. to start up while (!(oscxcn & 0x80) ; / wait for crystal osc. to settle oscicn = 0x88; / select external oscillator as sysclk / source and enable missing clock / detector / oscicn = 0x07; file:/interal 16mhz #defin

5、e prt0cf p0mdout #define prt1cf p1mdout #define prt2cf p2mdout void port_init (void) xbr0 = 0x07; / enable smbus, spi0, and uart0 xbr1 = 0x00; xbr2 = 0x44; / enable crossbar and weak pull-ups emi0cf = 0x27; emi0tc = 0x21; p74out = 0xff; p0mdout = 0x15; p1mdout |= 0x3c; /p1.2-p1.5推挽輸出 p1 &= 0xc3; /p1

6、.2-p1.5=0 void spi0_init (void) spi0cfg = 0x07; / data sampled on 1st sck rising edge / 8-bit data words spi0cfg|=0xc0; /ckpol =1; spi0cn = 0x03; / master mode; spi enabled; flags / cleared spi0ckr = sysclk/2/8000000-1; / spi clock 8; / set timer0 to overflow in 1ms tl0 = -sysclk/1000; tr0 = 1; / st

7、art timer0 ie|= 0x2; void timer0_isr (void) interrupt 1 /1ms th0 = (-sysclk/1000) 8; tl0 = -sysclk/1000; if (count1ms) count1ms-; void delay1ms(unsigned char t) count1ms=t; while (count1ms); void delay1s(unsigned char t) while (t) delay1ms(200); delay1ms(200); delay1ms(200); delay1ms(200); delay1ms(

8、200); t-; char getkeyvalue(void); void init_adc(void); unsigned int getadcvalue(char no); void testlcd(void); void displcd(char *dispbuf,char num); void initlcd(void); /初始化lcd void showwendu(void); void test7279(bit loopflag) ;void main (void) unsigned int w; char no,i,buf5; no=1; wdtcn = 0xde; wdtc

9、n = 0xad; /關(guān)看門(mén)狗 sysclk_init (); / 初始化時(shí)鐘timer0_init();/初始化定時(shí)器 port_init (); /初始化io口 spi0_init (); /初始化spi0 init_adc(); cpt1cn|=0x80; /使能比較器1 ref0cn = 0x07; /使能片內(nèi)參考電壓 dac0cn |= 0x80; /使能dac0 dac0h=0; dac0l=0; ea=1; /開(kāi)中斷/test7279(0); loop: test7279(0) ;/關(guān)閉數(shù)碼關(guān)顯示 testlcd(); initlcd(); no=0; /w = getadcva

10、lue(1); for (;) i=getkeyvalue(); if (i=0)&(i=3) no=i; switch(no) case 1: showwendu();break; case 2: showdianya();break; case 3: showyali();break; case 0:goto loop;break; default: break; w = getadcvalue(no); delay1ms(30); switch(no) case 1: buf0=(w%10000)/1000; buf1=(w%1000)/100; buf2= ; buf3=(w%100)

11、/10; buf4=(w%10); displcd(buf,1); showdu(); break; case 2: buf0=(w%10000)/1000; buf1=(w%1000)/100; buf2= ; buf3=(w%100)/10; buf4=(w%10); displcd(buf,2); showfu(); break; case 3: buf0=(w%10000)/1000; buf1=(w%1000)/100; buf2= ; buf3=(w%100)/10; buf4=(w%10); displcd(buf,3); showniu(); break; default: b

12、reak; 模數(shù)轉(zhuǎn)換#include c8051f020.h #include /* 壓力應(yīng)變片adc實(shí)驗(yàn)*/ #define mux_temp 0x08 #define mux_volt 0x01 #define mux_press 0x02 unsigned int idata temp, press, volt;unsigned char idata mux_select; sfr16 adc0 = 0xbe; / adc0 data void init_adc(void) adc0cn = 0x81; / adc0 enabled; normal tracking / mode; ad

13、c0 conversions are initiated / on write to ad0busy; adc0 data is / left-justified ref0cn = 0x07; / enable temp sensor, on-chip vref, / and vref output buffer mux_select = mux_temp; / cpu on-chip temp sensor amx0sl = mux_temp; adc0cf = (sysclk/2500000) 3; / adc conversion clock = 2.5mhz /adc0cf |= 0x

14、01; / pga gain = 2 eie2 &= 0x02; / disable adc0 eoc interrupt eie1 &= 0x04; / disable adc0 window compare interrupt / on-chip temperature / an1. 電位片/ an2. 應(yīng)變片void read_analog_inputs(void) long temp_long; ad0int = 0; / clear conversion complete indicator ad0busy = 1; / initiate conversion while (ad0i

15、nt = 0); / wait for conversion complete switch (mux_select) case mux_temp: temp_long = adc0 - 42380/2; temp_long = (temp_long * 200l) / 156; temp=temp_long; amx0sl = mux_volt; / select ain1 for next read mux_select = mux_volt; break; case mux_volt: temp_long = adc0; volt = 24*temp_long/655; amx0sl =

16、 mux_press; / select on-chip temp sensor mux_select = mux_press; break; case mux_press: temp_long = adc0; temp_long = 24*temp_long/655; press = temp_long; amx0sl = mux_temp; mux_select = mux_temp; break; default: amx0sl = mux_temp; mux_select = mux_temp; break; unsigned int getadcvalue(char no) read

17、_analog_inputs(); read_analog_inputs(); read_analog_inputs(); switch (no) case 1: return temp; case 2: return volt; case 3: if (press10) press=0; return press; 液晶顯示模塊ks0108.c#include c8051f020.h #include /* 液晶點(diǎn)陣顯示實(shí)驗(yàn)-128*64,控制器ks0108實(shí)驗(yàn)準(zhǔn)備:將撥碼開(kāi)關(guān)s1和s2置on運(yùn)行此程序?qū)⑸舷伦笥覞L動(dòng)顯示“姓名,馬彩霞學(xué)號(hào),3100601033班級(jí),通信1002”出現(xiàn)菜單,按

18、鍵選擇。*/ #define lcd_data p2 #define lcd_rs p30 #define lcd_rw p31 #define lcd_e p32 #define lcd_cs1 p34 #define lcd_cs2 p33 #define lcd_rst p35 void delay1ms(unsigned char); #define selectcs 0char code zero= /0/0x00,0xe0,0x10,0x08,0x08,0x10,0xe0,0x00,0x00,0x0f,0x10,0x20,0x20,0x10,0x0f,0x00, ; char co

19、de one= /1/0x00,0x10,0x10,0xf8,0x00,0x00,0x00,0x00,0x00,0x20,0x20,0x3f,0x20,0x20,0x00,0x00, ; char code two= /2/0x00,0x70,0x08,0x08,0x08,0x88,0x70,0x00,0x00,0x30,0x28,0x24,0x22,0x21,0x30,0x00, ; char code three= /3/0x00,0x30,0x08,0x88,0x88,0x48,0x30,0x00,0x00,0x18,0x20,0x20,0x20,0x11,0x0e,0x00, ; ch

20、ar code four= /4/0x00,0x00,0xc0,0x20,0x10,0xf8,0x00,0x00,0x00,0x07,0x04,0x24,0x24,0x3f,0x24,0x00, ; char code five= /5/0x00,0xf8,0x08,0x88,0x88,0x08,0x08,0x00,0x00,0x19,0x21,0x20,0x20,0x11,0x0e,0x00, ; char code six= /6/0x00,0xe0,0x10,0x88,0x88,0x18,0x00,0x00,0x00,0x0f,0x11,0x20,0x20,0x11,0x0e,0x00,

21、 ; char code seven= /7/0x00,0x38,0x08,0x08,0xc8,0x38,0x08,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x00, ; char code eight= /8/0x00,0x70,0x88,0x08,0x08,0x88,0x70,0x00,0x00,0x1c,0x22,0x21,0x21,0x22,0x1c,0x00, ; char code nine= /9/0x00,0xe0,0x10,0x08,0x08,0x10,0xe0,0x00,0x00,0x00,0x31,0x22,0x22,0x11,0x

22、0f,0x00, ; char code mao= /:/0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00, ; char code dot= /./0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x30,0x30,0x00,0x00,0x00,0x00,0x00, ; char code wen= /溫/0x10,0x21,0x86,0x70,0x00,0x7e,0x4a,0x4a,0x4a,0x4a,0x4a,0x7e,0x00,0x00

23、,0x00,0x00, 0x02,0xfe,0x01,0x40,0x7f,0x41,0x41,0x7f,0x41,0x41,0x7f,0x41,0x41,0x7f,0x40,0x00, ; char code du= /度/0x00,0x00,0xfc,0x04,0x24,0x24,0xfc,0xa5,0xa6,0xa4,0xfc,0x24,0x24,0x24,0x04,0x00, 0x80,0x60,0x1f,0x80,0x80,0x42,0x46,0x2a,0x12,0x12,0x2a,0x26,0x42,0xc0,0x40,0x00, ; char code dian= /電/0x00,

24、0x00,0xf8,0x48,0x48,0x48,0x48,0xff,0x48,0x48,0x48,0x48,0xf8,0x00,0x00,0x00, 0x00,0x00,0x0f,0x04,0x04,0x04,0x04,0x3f,0x44,0x44,0x44,0x44,0x4f,0x40,0x70,0x00, ; char code ya= /壓/0x00,0x00,0xfe,0x02,0x42,0x42,0x42,0x42,0xfa,0x42,0x42,0x42,0x62,0x42,0x02,0x00, 0x20,0x18,0x27,0x20,0x20,0x20,0x20,0x20,0x3

25、f,0x20,0x21,0x2e,0x24,0x20,0x20,0x00, ; char code li= /力/0x00,0x10,0x10,0x10,0x10,0x10,0x10,0xff,0x10,0x10,0x10,0x10,0x10,0xf0,0x00,0x00, 0x00,0x00,0x80,0x40,0x20,0x18,0x06,0x01,0x00,0x00,0x40,0x80,0x40,0x3f,0x00,0x00, ; char code c= /c/0xc7,0x35,0x0f,0x08,0x08,0x08,0x38,0x00,0x07,0x18,0x20,0x20,0x2

26、0,0x10,0x08,0x00, ; char code n= /牛頓/0x08,0xf8,0x30,0xc0,0x00,0x08,0xf8,0x08,0x20,0x3f,0x20,0x00,0x07,0x18,0x3f,0x00, ; char code m= /m/0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x00,0x20,0x3f,0x20,0x00,0x3f,0x20,0x00,0x3f, ; char code v= /v/0x08,0x78,0x88,0x00,0x00,0xc8,0x38,0x08,0x00,0x00,0x07,0x38,0x0e,

27、0x01,0x00,0x00, ; charcodescreen1= 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x40,0x80,0x00,0x00,0x00,0x00,0xc0,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x80,0x80,0x00,0x80,0xc0,0x80,0x80,0x80,0x00,0x00,0x00,0xc0,0x00,0x00,0x80,0x80,0x80,0xc0,0x80,0x00,0x00,0x00,0x00,0x40,0x80,0x40,0x80,0x00,0x00,

28、0xc0,0x00,0x00,0x00,0xc0,0x40,0x40,0xc0,0x80,0x80,0x80,0xc0,0x80,0x80,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x000x00,0

29、x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0xfc,0x80,0x40,0x04,0x04,0x040xff,0x04,0x04,0x04,0x00,0x82,0x81,0xbe,0xeb,0xaa,0xab,0xaa,0xea,0xbf,0x80,0x80,0x00,0x61,0x19,0xff,0x09,0x91,0x7f,0x00,0x00,0xff,0x00,0xc0,0x00,0x

30、27,0x21,0x25,0x25,0x25,0xf5,0x2d,0x25,0x21,0x25,0x23,0x00,0xff,0x20,0x23,0x3c,0x09,0x8a,0x7a,0x0a,0xfa,0x0a,0xc9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

31、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xc4,0xb4,0x84,0x84,0x84,0xe5,0x9c,0x80,0x00,0x00,0x88,0x98,0xa9,0xd8,0xa4,0x9c,0xa4,0x21,0x10,0x88,0x44,0x00,0x30,0xd4,0x55,0x75,0x

32、d4,0x3c,0x54,0x54,0x75,0xd1,0x31,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

33、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x02,0x02,0x02,0x02,0x02,0x12,0x12,0x10,0x0f,0x00,0x00,0x08,0x04,0x02,0x1f,0x02,0x14,0x10,0x09,0x

34、09,0x04,0x02,0x00,0x00,0x1f,0x05,0x05,0x15,0x10,0x15,0x0d,0x0d,0x15,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

35、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x42,0x81,0x89,0x89,0x76,0x00,0x00,0x82,0xff,0x80,0x00,0x00,0x

36、7e,0x81,0x81,0x81,0x7e,0x00,0x7e,0x81,0x81,0x81,0x7e,0x00,0x7e,0x89,0x89,0x8b,0x70,0x00,0x7e,0x81,0x81,0x81,0x7e,0x00,0x00,0x82,0xff,0x80,0x00,0x00,0x7e,0x81,0x81,0x81,0x7e,0x00,0x42,0x81,0x89,0x89,0x76,0x00,0x42,0x81,0x89,0x89,0x76,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

37、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x44,0xd8,0x00,0x04,0x

38、f4,0x5c,0xf4,0x5c,0x54,0xf4,0x00,0x00,0x80,0xe0,0x1c,0x08,0xa8,0xa8,0xa8,0xac,0xa8,0xa8,0x08,0x00,0x00,0x20,0xf0,0x00,0x00,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0xe0,0x10,0x10,0x10,0xe0,0x00,0x60,0x10,0x10,0x90,0x60,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

39、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

40、00,0x00,0x00,0x00,0x18,0x07,0x08,0x10,0x17,0x11,0x17,0x11,0x15,0x17,0x10,0x00,0x00,0x1f,0x00,0x00,0x1e,0x0a,0x0a,0x0a,0x0a,0x1e,0x00,0x00,0x00,0x08,0x0f,0x08,0x00,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x07,0x08,0x08,0x08,0x07,0x00,0x0c,0x0a,0x09,0x08,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

41、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

42、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

43、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x

44、00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,; char code screen2=/請(qǐng)選擇:1溫度,2電壓,3力,0返回0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

45、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0

46、0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x20,0x00,0xa0,0xa0,0xa0,0xf0,0xa0,0xa0,0xa0,0x00,0x10,0x60,0x00,0x80,0x60,0x40,0xf0,0x40,0x40,0x40,0x00,0x00,0x40,0x40,0xf0,0x40,0x50,0x30,0xd0,0x90,0x50,0x3

47、0,0x00,0x00,0x00,0x00,0x00,0x00,0xc0,0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0xc0,0x00,0x00,0x00,0x90,0x20,0x00,0x00,0xf0,0x50,0x50,0x50,0x50,0xf0,0x00,0x00,0x00,0xe0,0xa0,0xa0,0xe0,0xa0,0xb0,0xa0,0xe0,0xa0,0xa0,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x40,0x40,0x40,0x80,0x00,0x00,0xc0,0x40,0x4

48、0,0x40,0xf0,0x40,0x40,0x40,0xe0,0x40,0x00,0x00,0xf0,0x10,0x10,0x10,0xd0,0x10,0x10,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x7f,0x20,0x10,0x02,0x7e,0x2a,0x2b,0x2a,0x7e,0x02,0x00,0x61,0x1f,0x20,0x61,0x51,0x4f,0x41,0x5f,0x51,0x51,0x59,0x00,0x44,0x4

49、4,0x7f,0x02,0x15,0x15,0x14,0x7e,0x15,0x15,0x11,0x00,0x00,0x00,0x00,0x00,0x18,0x18,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x3f,0x20,0x00,0x00,0x78,0x07,0x40,0x7c,0x45,0x7d,0x45,0x7d,0x45,0x7d,0x40,0x00,0x60,0x1f,0x40,0x48,0x4b,0x3a,0x2a,0x3a,0x4b,0x40,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x31,0x2

50、8,0x24,0x22,0x21,0x00,0x00,0x1f,0x09,0x09,0x09,0x3f,0x49,0x49,0x49,0x4f,0x60,0x00,0x60,0x1f,0x40,0x42,0x42,0x7f,0x42,0x46,0x4a,0x52,0x40,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x04,0x24,0x24,0xd8,0x00,0x00,0xff,0x01,0x21,0x21,0xfd,0x21,0x61,0xa1,0x21,0x01,0x00,0x00,0x08,0x08,0x08,0xc8,0x3f,0x08,0x08,0x08,0xfc,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xf8,0x04,0x04,0x04,0xf8,0x00,0x10,0x11,0xf6,0x80,0x7e,0x0a,0xaa,0x49,0xa9,0x19,0x00,0x00,0x00,0xff,0x01,0xf9,0x49,0x49,0x49,0x

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論