亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

end-to-en-<b>Delay</b>

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標簽: 2543 TLC

    上傳時間: 2013-11-19

    上傳用戶:shen1230

  • AVR單片機數碼管秒表顯示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    標簽: AVR 單片機 數碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • DS1820 C51 子程序 (一線數據傳輸)

    //芯片資料請到www.elecfans.com查找 //DS1820 C51 子程序//這里以11.0592M晶體為例,不同的晶體速度可能需要調整延時的時間//sbit DQ =P2^1;//根據實際情況定義端口 typedef unsigned char byte;typedef unsigned int  word; //延時void delay(word useconds){  for(;useconds>0;useconds--);} //復位byte ow_reset(void){  byte presence;  DQ = 0; //pull DQ line low  delay(29); // leave it low for 480us  DQ = 1; // allow line to return high  delay(3); // wait for presence  presence = DQ; // get presence signal  delay(25); // wait for end of timeslot  return(presence); // presence signal returned}     // 0=presence, 1 = no part //從 1-wire 總線上讀取一個字節byte read_byte(void){  byte i;  byte value = 0;  for (i=8;i>0;i--)  {    value>>=1;    DQ = 0; // pull DQ low to start timeslot    DQ = 1; // then return high    delay(1);  //for (i=0; i<3; i++);     if(DQ)value|=0x80;    delay(6); // wait for rest of timeslot  }  return(value);} //向 1-WIRE 總線上寫一個字節void write_byte(char val){  byte i;  for (i=8; i>0; i--) // writes byte, one bit at a time  {    DQ = 0; // pull DQ low to start timeslot    DQ = val&0x01;    delay(5); // hold value for remainder of timeslot    DQ = 1;    val=val/2;  }  delay(5);} //讀取溫度char Read_Temperature(void){  union{    byte c[2];    int x;  }temp;   ow_reset();  write_byte(0xCC); // Skip ROM  write_byte(0xBE); // Read Scratch Pad  temp.c[1]=read_byte();  temp.c[0]=read_byte();  ow_reset();  write_byte(0xCC); //Skip ROM  write_byte(0x44); // Start Conversion  return temp.x/2;}

    標簽: 1820 C51 DS 程序

    上傳時間: 2013-11-03

    上傳用戶:hongmo

  • This program will ask how many numbers you want to find the average of, then it will allow you to en

    This program will ask how many numbers you want to find the average of, then it will allow you to enter your numbers(yes they can even be decimals) then it will calculate the mean, median, mode and range of what you enter.

    標簽: will you program average

    上傳時間: 2015-03-23

    上傳用戶:skhlm

  • mp3設計程序資料

    mp3設計程序資料,采用c語言編寫。 README file for yampp-3 source code 2001-05-27 This is the current state of the yampp-3 source code, 2001-05-27. This code is intended to run on Rev. B of the yampp-3 PCB, but can ofcourse be used on compatible systems as well. It still uses the "old" song selection system as the yampp-2. However, the disk handling routines has improved a lot and the obviosly, the new VS1001 handling has been put in. The codesize is almost at it s maximum at 1F40 bytes. A .ROM file is included if you don t have the compiler set up. For now, the documentation is in the code

    標簽: mp3 設計程序

    上傳時間: 2015-04-13

    上傳用戶:小碼農lz

  • 《JavaServer Faces》 In JavaServer Faces, developers learn how to use the new JavaServer Faces framew

    《JavaServer Faces》 In JavaServer Faces, developers learn how to use the new JavaServer Faces framework to build real-world web applications. The book contains everything you ll need: how to construct the HTML on the front end how to create the user interface components that connect the front end to your business objects how to write a back-end that s JSF-friendly and how to create the deployment descriptors that tie everything together. This book is a complete guide to the crucial new JSF technology.

    標簽: JavaServer Faces developers framew

    上傳時間: 2016-01-02

    上傳用戶:redmoons

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    標簽: converts Toolbox complex logical

    上傳時間: 2016-02-12

    上傳用戶:a673761058

  • JXLayer is the universal decorator for Swing components, it means that you have a flexible way to en

    JXLayer is the universal decorator for Swing components, it means that you have a flexible way to enrich the visual appearance of your components

    標簽: components decorator universal flexible

    上傳時間: 2014-01-20

    上傳用戶:WMC_geophy

  • Aodv for NS-2. A mobile ad-hoc network (MANET) is a kind of wireless ad-hoc network, and is a self-c

    Aodv for NS-2. A mobile ad-hoc network (MANET) is a kind of wireless ad-hoc network, and is a self-configuring network of mobile routers connected wirelessly. MANET may operate in a standalone fashion, or may be connected to the larger Internet. Many routing protocols have been developed for MANETs over the past few years. This project evaluated three specific MANET routing protocols which are Ad-hoc On-demand Distance Vector (AODV), Dynamic Source Routing (DSR) and Dynamic MANET Ondemand routing protocol (DYMO) to better understand the major characteristics of these routing protocols. Different performance aspects were investigated in this project including packet delivery ratio, routing overhead, throughput and average end-to-end delay.

    標簽: network ad-hoc wireless mobile

    上傳時間: 2014-01-12

    上傳用戶:zsjzc

  • 微電腦型數學演算式隔離傳送器

    特點: 精確度0.1%滿刻度 可作各式數學演算式功能如:A+B/A-B/AxB/A/B/A&B(Hi or Lo)/|A|/ 16 BIT類比輸出功能 輸入與輸出絕緣耐壓2仟伏特/1分鐘(input/output/power) 寬范圍交直流兩用電源設計 尺寸小,穩定性高

    標簽: 微電腦 數學演算 隔離傳送器

    上傳時間: 2014-12-23

    上傳用戶:ydd3625

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品国产成人| 亚洲激情在线观看| 亚洲专区在线| 亚洲精品乱码久久久久久黑人| 国语自产精品视频在线看抢先版结局 | 91久久极品少妇xxxxⅹ软件| 欧美片在线观看| 欧美日韩一区二区三区在线视频| 欧美欧美全黄| 国产精品美女黄网| 一区二区视频欧美| 国产一区二三区| 亚洲福利国产| 亚洲色在线视频| 久久精品国产亚洲aⅴ| 欧美xx视频| 国产精品亚洲а∨天堂免在线| 国内精品久久久久影院色| 亚洲国产99精品国自产| 一本色道久久综合狠狠躁篇怎么玩| 亚洲国产毛片完整版| 99视频在线精品国自产拍免费观看| 亚洲欧美日韩国产成人| 免费观看成人| 国产精品地址| 亚洲日本中文| 久久久www| 国产精品wwwwww| 国产日韩欧美制服另类| 亚洲激情图片小说视频| 羞羞视频在线观看欧美| 欧美成人小视频| 国产欧美日韩综合一区在线观看 | 亚洲自拍都市欧美小说| 老司机亚洲精品| 国产一区二区三区视频在线观看| 一本一道久久综合狠狠老精东影业| 亚洲欧美日韩在线高清直播| 欧美激情国产高清| 在线成人中文字幕| 久久精品国产99| 国产亚洲成av人在线观看导航| 亚洲美女诱惑| 欧美大片91| 亚洲二区在线观看| 亚洲国产成人午夜在线一区| 午夜欧美精品久久久久久久| 欧美日韩第一区日日骚| 亚洲国产精品成人va在线观看| 欧美在线视频在线播放完整版免费观看 | 国产精品日韩电影| 国产一区久久久| 羞羞色国产精品| 国产精品中文字幕在线观看| 亚洲一区二区三区乱码aⅴ蜜桃女 亚洲一区二区三区乱码aⅴ | 国产精品久久一区二区三区| 黄色一区二区三区| 欧美日韩一区二区三区在线视频| 1024亚洲| 欧美成人一区二区三区在线观看 | 欧美日韩专区在线| 国产无一区二区| 亚洲欧美日韩国产精品| 国产精品男女猛烈高潮激情 | 久久女同互慰一区二区三区| 国产亚洲综合精品| 久久国产精品72免费观看| 国产精品乱子久久久久| 亚洲在线观看视频| 国产日本欧美一区二区三区在线| 亚洲欧美日韩在线播放| 国产精一区二区三区| 亚洲欧美日韩一区二区三区在线| 国产伦精品免费视频| 亚洲视频福利| 国产视频一区三区| 久久夜色精品一区| 最新日韩欧美| 欧美日韩一区二区在线| 亚洲精品欧美激情| 国产精品萝li| 久久久久久黄| 一区二区久久久久| 国产欧美日韩专区发布| 午夜在线观看免费一区| 韩国精品在线观看| 欧美大片在线观看一区| 亚洲午夜精品17c| 韩国精品久久久999| 亚洲精品乱码久久久久久黑人| 欧美视频1区| 欧美精品在线观看91| 巨乳诱惑日韩免费av| 久久er精品视频| 午夜精品亚洲一区二区三区嫩草| 一本大道久久a久久综合婷婷| 亚洲精品乱码久久久久久按摩观| 亚洲国产精品激情在线观看| 国产在线观看一区| 国产精品一区二区你懂的| 国产精品成人在线| 国产精品色在线| 国产精品一区二区在线观看| 国产精品一区二区久久国产| 欧美三级午夜理伦三级中视频| 欧美精品黄色| 欧美亚一区二区| 国产精品嫩草99a| 国产伦精品一区二区三区免费迷| 国产日韩av在线播放| 国产色产综合色产在线视频| 国产一区二区三区四区在线观看| 韩国一区电影| 亚洲国产乱码最新视频| 夜夜精品视频一区二区| 欧美制服第一页| 久久精品人人做人人综合 | 一区二区三区四区在线| 国外成人性视频| 老司机午夜精品视频| 亚洲精品1区| 欧美日韩在线一区二区| 亚洲免费在线视频一区 二区| 国产精品视频一二三| 久久香蕉精品| 久久精品国产欧美亚洲人人爽| 狼狼综合久久久久综合网| 欧美在线网址| 久久一区激情| 国产精品日韩一区| 18成人免费观看视频| 性色av一区二区三区| 久久精品在线观看| 国产日韩精品电影| 久久精品国产一区二区三| 99精品黄色片免费大全| 亚洲午夜精品国产| 欧美在线欧美在线| 久久人91精品久久久久久不卡| 乱中年女人伦av一区二区| 欧美精品自拍| 国产欧美日韩精品一区| 韩国在线一区| 一区二区三区久久| 久久精品国产欧美激情| 欧美日韩国产一区二区三区地区| 国产精品毛片a∨一区二区三区|国 | 国产精品视频免费一区| 美女精品网站| 欧美日韩你懂的| 免费观看成人www动漫视频| 在线视频免费在线观看一区二区| 久久人91精品久久久久久不卡| 六月婷婷一区| 国产精品一区二区三区观看| 亚洲国产专区校园欧美| 欧美一区二区三区在线观看| 欧美日韩国产影院| 99天天综合性| 欧美午夜不卡影院在线观看完整版免费| 影音先锋久久久| 久久婷婷影院| 亚洲国产日韩欧美在线99| 亚洲视频在线观看网站| 午夜精品一区二区三区电影天堂| 午夜精品福利在线| 欧美日韩国产一中文字不卡| 尤物yw午夜国产精品视频明星| 日韩一区二区免费看| 久久久综合激的五月天| 国产一区二区中文字幕免费看| 一本大道久久a久久精二百| 欧美电影免费观看大全| 伊人婷婷久久| 久久一区二区视频| 久久露脸国产精品| 欧美亚洲免费电影| 极品中文字幕一区| 久久久午夜精品| 亚洲香蕉网站| 国产精品第2页| 国产精品久久久爽爽爽麻豆色哟哟| 国产精品免费aⅴ片在线观看| 欧美日本亚洲视频| 日韩视频永久免费观看| 国产精品色午夜在线观看| 国产精品一区二区在线观看不卡| 欧美日韩精品一区视频| 伊人一区二区三区久久精品| 国产亚洲欧美日韩在线一区| 日韩午夜在线电影| 国内精品视频在线播放| 午夜久久久久| 韩国精品在线观看| 老司机午夜精品| 亚洲人成在线播放网站岛国| 欧美日韩国产精品一卡| 99re视频这里只有精品| 国产精品免费网站| 久久狠狠久久综合桃花|