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

正文內(nèi)容

片機(jī)項(xiàng)目實(shí)踐教程劉燎原-項(xiàng)目五數(shù)字電壓表-資料下載頁

2025-01-17 13:04本頁面
  

【正文】 7234567891R P 1RE S P A C K 8 ? 轉(zhuǎn)換步驟: ? clock時鐘信號(典型值 500KHZ,周期 2us) 用定時器 0產(chǎn)生周期 2us方波信號作為 CLOCK ? 、 ALE有效 ,開始轉(zhuǎn)換 Vin Start、 ALE需要正脈沖,通過置 1或 0得到 ? , EOC=0。當(dāng)轉(zhuǎn)換結(jié)束時, EOC=1.(轉(zhuǎn)換時間大概100us左右) 利用查詢等待方式, while(eoc==0)?!? ? ,設(shè)置 OE=1后,才可以讀取轉(zhuǎn)換后的數(shù)字量 OE=1。m=P0。 ? ? 程序: ? include ? include ? unsigned char code sz2[]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,0x88,0x83,0xc6,0xa1,0x86,0x8e}。 ? sbit eoc=P2^0。 ? sbit start=P2^1。 ? sbit clock=P2^2。 ? sbit oe=P2^3。 ? sbit seg1=P3^4。 ? sbit seg2=P3^5。 ? void delay(unsigned int a) ? { ? unsigned char b。 ? while(a!= 0) ? { ? for(b=0。b125。b++)。 ? } ? } ? void disp0(unsigned char m) ? {unsigned char i,j。 ? i=mamp。0xf0。 ? i=_crol_(i,4)。 ? P1=sz2[i]。 ? seg1=0。 ? delay(2)。 ? P3=0xff。 ? j=mamp。0x0f。 ? P1=sz2[j]。 ? seg2=0。 ? delay(2)。 ? P3=0xff。 ? } ? void main() ? { unsigned char m。 ? EA=1。 ? ET0=1。 ? TMOD=0x01。 ? TH0=(655361)/256。 ? TL0=(655361)%256。 ? TR0=1。 ? while(1) ? { ? start=0。delay(1)。start=1。delay(1)。start=0。delay(1)。 ? while(eoc==0)。 ? oe=1。 ? m=P0。 ? disp0(m)。 ? oe=0。 ? } ? } ? void lsd() interrupt 1 ? { ? TH0=(655361)/256。 ? TL0=(655361)%256。 ? clock=~clock。 ? } ? 實(shí)驗(yàn): 簡易數(shù)字電壓表,顯示電壓的十進(jìn)制數(shù),兩位顯示,帶一位小數(shù)點(diǎn)(編程,仿真) ? ( 1)如何把數(shù)字量轉(zhuǎn)換為對應(yīng)的電壓十進(jìn)制數(shù) 從公式出發(fā) Vi/5=D/255 Vi=D*5/255 要轉(zhuǎn)化為帶小數(shù)的,可寫為 Vi=D**5/255 假設(shè)要保留兩位小數(shù),則: Vi`= Vi*100=D**500/255 i= Vi`/100。 j= Vi`/10%10。 k= Vi`%10。 ? ( 2)如何顯示小數(shù)點(diǎn) ? 在顯示整數(shù)位的時候加上小數(shù)點(diǎn)的顯示 ? 或者可以增加一個帶小數(shù)點(diǎn)的數(shù)組 注意: m的類型 int
點(diǎn)擊復(fù)制文檔內(nèi)容
教學(xué)課件相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1