亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
黄色精品一区| 亚洲免费一区二区| 国产精品户外野外| 欧美片在线观看| 狠狠色综合网站久久久久久久| 欧美一区午夜视频在线观看| 欧美性生交xxxxx久久久| 一本久道久久久| 一区二区在线免费观看| 欧美日韩系列| 亚洲摸下面视频| 国产一级久久| 国产精品美女久久久| 欧美一区二区三区四区视频| 禁断一区二区三区在线| 欧美日韩国产成人在线91| 性欧美大战久久久久久久免费观看| 国产一区二区视频在线观看 | 欧美中文字幕在线视频| 国产亚洲精品资源在线26u| 欧美精品情趣视频| 久久久国产精彩视频美女艺术照福利| 在线看片日韩| 亚洲国产成人午夜在线一区| 欧美国产第二页| 亚洲小说欧美另类婷婷| 欧美另类专区| 欧美伊人精品成人久久综合97| 亚洲美女区一区| 你懂的网址国产 欧美| 亚洲主播在线观看| 亚洲一区bb| 亚洲欧美国产精品va在线观看| 一级日韩一区在线观看| 欧美日韩精品久久| 欧美精品久久天天躁| 欧美日韩一区二区三区免费| 国产日本亚洲高清| 在线播放不卡| 亚洲人成人77777线观看| 在线观看一区二区精品视频| 欧美一乱一性一交一视频| 国产精品系列在线| 欧美日韩一区二区在线观看视频| 夜久久久久久| 午夜精品久久久久久久99热浪潮| 久久精品国产亚洲精品 | 亚洲国产精品免费| 欧美激情一区二区三区高清视频| 欧美亚洲三级| 亚洲精品免费在线| 国产精品亚洲一区| 久久久亚洲一区| 欧美日韩成人精品| 久久视频精品在线| 欧美激情精品久久久久| 国产精品成人一区二区艾草| 国产精品久久二区| 国内揄拍国内精品久久| 黄色av日韩| 99精品免费网| 欧美诱惑福利视频| 欧美区在线观看| 欧美一区免费视频| 久久这里只有| 国产模特精品视频久久久久| 男女精品网站| 精品成人一区二区三区| 欧美一区国产一区| 国产亚洲一区二区三区在线播放| 亚洲在线成人精品| 欧美日韩国产精品成人| 亚洲精品国产精品国自产在线| 一区二区三区免费观看| 欧美一级淫片aaaaaaa视频| 欧美国产日韩视频| 欧美日韩伊人| 国产精品视频网| 中国女人久久久| 欧美va日韩va| 国语自产在线不卡| 亚洲欧美一区二区在线观看| 久久日韩粉嫩一区二区三区| 国产精品视频男人的天堂| 99精品欧美| 免费看亚洲片| 欧美精品一区二区蜜臀亚洲| 久久久精品一品道一区| 国际精品欧美精品| 国产精品成人观看视频免费| 母乳一区在线观看| 国模精品一区二区三区色天香| 欧美在线中文字幕| 国产一区二区无遮挡| 久久疯狂做爰流白浆xx| 国产精品区一区| 亚洲男人的天堂在线| 欧美在线观看一区| 国产农村妇女毛片精品久久麻豆| 欧美一区二区三区免费观看| 欧美手机在线视频| 欧美日韩国产成人在线| 亚洲国产一区二区三区高清| 国产精品毛片在线看| 国产精品一区二区久久久| 在线一区观看| 亚洲成在人线av| 一区二区欧美日韩| 欧美另类女人| 亚洲天堂成人在线观看| 国产精品视频1区| 另类春色校园亚洲| 一本一本久久a久久精品综合麻豆 一本一本久久a久久精品牛牛影视 | 国产精品久久久一本精品| 亚洲一区二区成人在线观看| 国产在线观看一区| 欧美日韩一二三区| 久久精品网址| 亚洲视频在线看| 国产日韩欧美在线| 亚洲第一精品电影| 欧美日本网站| 久热精品视频在线| 亚洲免费综合| 亚洲精品韩国| 伊人激情综合| 国产一区二区三区久久悠悠色av| 久热国产精品视频| 久久福利资源站| 国产欧美精品va在线观看| 午夜视频在线观看一区| 小黄鸭精品密入口导航| 亚洲国产精品免费| 精品福利电影| 极品少妇一区二区| 国产日韩1区| 国产精品伦理| 国产精品播放| 国产精品久久久久久久久婷婷| 欧美日韩免费网站| 欧美三级日韩三级国产三级| 亚洲欧美国产不卡| 校园春色国产精品| 欧美一区=区| 久久久久免费观看| 蜜桃久久av一区| 欧美福利小视频| 国产精品www网站| 国产精品揄拍500视频| 国产午夜精品麻豆| 亚洲黄色一区| 国产日韩欧美三区| 欧美不卡在线| 卡通动漫国产精品| 欧美中日韩免费视频| 亚洲一区二区在线视频| 午夜天堂精品久久久久| 洋洋av久久久久久久一区| 日韩视频在线免费观看| 亚洲视频在线二区| 久久精品成人一区二区三区蜜臀 | 伊人精品在线| 一区二区三区蜜桃网| 欧美在线免费观看| 欧美精品高清视频| 国产真实乱子伦精品视频| 日韩一级精品| 在线视频免费在线观看一区二区| 欧美激情视频一区二区三区在线播放| 欧美日韩视频不卡| 亚洲电影毛片| 午夜日韩在线观看| 国产精品啊v在线| 亚洲电影欧美电影有声小说| 欧美一区二区三区在线观看视频 | 正在播放欧美一区| 亚洲国产一区二区视频| 亚洲美女视频在线观看| 亚洲精品一级| 亚洲国产精品悠悠久久琪琪| 国产婷婷色一区二区三区在线| 欧美日韩福利视频| 欧美日韩亚洲高清| 国产精品一区二区视频| 国产情人节一区| 欧美一区二区精品久久911| 欧美视频官网| 久久gogo国模裸体人体| 香蕉成人啪国产精品视频综合网| 欧美国产极速在线| 亚洲国产另类精品专区| 国产精品日本一区二区| 欧美日韩你懂的| 欧美日韩精品一本二本三本| 欧美成人三级在线| 麻豆视频一区二区| 亚洲人午夜精品免费| 久久先锋资源| 欧美精品粉嫩高潮一区二区 | 欧美一区视频|